Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
ab3503bf
Commit
ab3503bf
authored
May 10, 2023
by
Francois Gouget
Committed by
Alexandre Julliard
May 11, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Use win_skip() for missing APIs.
parent
3d246c66
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
console.c
dlls/kernel32/tests/console.c
+1
-1
file.c
dlls/kernel32/tests/file.c
+1
-1
process.c
dlls/kernel32/tests/process.c
+1
-1
No files found.
dlls/kernel32/tests/console.c
View file @
ab3503bf
...
...
@@ -3864,7 +3864,7 @@ static void test_GetConsoleFontInfo(HANDLE std_output)
pGetNumberOfConsoleFonts
=
(
void
*
)
GetProcAddress
(
hmod
,
"GetNumberOfConsoleFonts"
);
if
(
!
pGetNumberOfConsoleFonts
)
{
skip
(
"GetNumberOfConsoleFonts is not available
\n
"
);
win_
skip
(
"GetNumberOfConsoleFonts is not available
\n
"
);
return
;
}
...
...
dlls/kernel32/tests/file.c
View file @
ab3503bf
...
...
@@ -914,7 +914,7 @@ static void test_CopyFile2(void)
if
(
!
pCopyFile2
)
{
skip
(
"CopyFile2 is not available
\n
"
);
todo_wine
win_
skip
(
"CopyFile2 is not available
\n
"
);
return
;
}
...
...
dlls/kernel32/tests/process.c
View file @
ab3503bf
...
...
@@ -2185,7 +2185,7 @@ static void test_IsWow64Process2(void)
if
(
!
pIsWow64Process2
)
{
skip
(
"IsWow64Process2 is not available
\n
"
);
win_
skip
(
"IsWow64Process2 is not available
\n
"
);
return
;
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment