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
982b9314
Commit
982b9314
authored
Nov 10, 2018
by
Nikolay Sivov
Committed by
Alexandre Julliard
Nov 12, 2018
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel32/tests: Fix skips for implemented functions.
Signed-off-by:
Nikolay Sivov
<
nsivov@codeweavers.com
>
Signed-off-by:
Alexandre Julliard
<
julliard@winehq.org
>
parent
2febd18e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
file.c
dlls/kernel32/tests/file.c
+3
-3
process.c
dlls/kernel32/tests/process.c
+2
-2
No files found.
dlls/kernel32/tests/file.c
View file @
982b9314
...
@@ -4710,7 +4710,7 @@ static void test_GetFinalPathNameByHandleA(void)
...
@@ -4710,7 +4710,7 @@ static void test_GetFinalPathNameByHandleA(void)
if
(
!
pGetFinalPathNameByHandleA
)
if
(
!
pGetFinalPathNameByHandleA
)
{
{
skip
(
"GetFinalPathNameByHandleA is missing
\n
"
);
win_
skip
(
"GetFinalPathNameByHandleA is missing
\n
"
);
return
;
return
;
}
}
...
@@ -4803,7 +4803,7 @@ static void test_GetFinalPathNameByHandleW(void)
...
@@ -4803,7 +4803,7 @@ static void test_GetFinalPathNameByHandleW(void)
if
(
!
pGetFinalPathNameByHandleW
)
if
(
!
pGetFinalPathNameByHandleW
)
{
{
skip
(
"GetFinalPathNameByHandleW is missing
\n
"
);
win_
skip
(
"GetFinalPathNameByHandleW is missing
\n
"
);
return
;
return
;
}
}
...
@@ -5026,7 +5026,7 @@ static void test_post_completion(void)
...
@@ -5026,7 +5026,7 @@ static void test_post_completion(void)
if
(
!
pGetQueuedCompletionStatusEx
)
if
(
!
pGetQueuedCompletionStatusEx
)
{
{
skip
(
"GetQueuedCompletionStatusEx not available
\n
"
);
win_
skip
(
"GetQueuedCompletionStatusEx not available
\n
"
);
CloseHandle
(
port
);
CloseHandle
(
port
);
return
;
return
;
}
}
...
...
dlls/kernel32/tests/process.c
View file @
982b9314
...
@@ -2117,7 +2117,7 @@ static void test_IsWow64Process(void)
...
@@ -2117,7 +2117,7 @@ static void test_IsWow64Process(void)
if
(
!
pIsWow64Process
)
if
(
!
pIsWow64Process
)
{
{
skip
(
"IsWow64Process is not available
\n
"
);
win_
skip
(
"IsWow64Process is not available
\n
"
);
return
;
return
;
}
}
...
@@ -3660,7 +3660,7 @@ static void test_largepages(void)
...
@@ -3660,7 +3660,7 @@ static void test_largepages(void)
SIZE_T
size
;
SIZE_T
size
;
if
(
!
pGetLargePageMinimum
)
{
if
(
!
pGetLargePageMinimum
)
{
skip
(
"No GetLargePageMinimum support.
\n
"
);
win_
skip
(
"No GetLargePageMinimum support.
\n
"
);
return
;
return
;
}
}
size
=
pGetLargePageMinimum
();
size
=
pGetLargePageMinimum
();
...
...
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