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) ...@@ -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;
} }
......
...@@ -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();
......
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