kernel32/tests: Fix skips for implemented functions.
Signed-off-by: Nikolay Sivov <nsivov@codeweavers.com> Signed-off-by: Alexandre Julliard <julliard@winehq.org>
This commit is contained in:
parent
2febd18e28
commit
982b93148c
|
@ -4710,7 +4710,7 @@ static void test_GetFinalPathNameByHandleA(void)
|
|||
|
||||
if (!pGetFinalPathNameByHandleA)
|
||||
{
|
||||
skip("GetFinalPathNameByHandleA is missing\n");
|
||||
win_skip("GetFinalPathNameByHandleA is missing\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -4803,7 +4803,7 @@ static void test_GetFinalPathNameByHandleW(void)
|
|||
|
||||
if (!pGetFinalPathNameByHandleW)
|
||||
{
|
||||
skip("GetFinalPathNameByHandleW is missing\n");
|
||||
win_skip("GetFinalPathNameByHandleW is missing\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -5026,7 +5026,7 @@ static void test_post_completion(void)
|
|||
|
||||
if (!pGetQueuedCompletionStatusEx)
|
||||
{
|
||||
skip("GetQueuedCompletionStatusEx not available\n");
|
||||
win_skip("GetQueuedCompletionStatusEx not available\n");
|
||||
CloseHandle( port );
|
||||
return;
|
||||
}
|
||||
|
|
|
@ -2117,7 +2117,7 @@ static void test_IsWow64Process(void)
|
|||
|
||||
if (!pIsWow64Process)
|
||||
{
|
||||
skip("IsWow64Process is not available\n");
|
||||
win_skip("IsWow64Process is not available\n");
|
||||
return;
|
||||
}
|
||||
|
||||
|
@ -3660,7 +3660,7 @@ static void test_largepages(void)
|
|||
SIZE_T size;
|
||||
|
||||
if (!pGetLargePageMinimum) {
|
||||
skip("No GetLargePageMinimum support.\n");
|
||||
win_skip("No GetLargePageMinimum support.\n");
|
||||
return;
|
||||
}
|
||||
size = pGetLargePageMinimum();
|
||||
|
|
Loading…
Reference in New Issue