Commit 982b9314 authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

kernel32/tests: Fix skips for implemented functions.

parent 2febd18e
......@@ -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();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment