kernel32/tests: Use win_skip() for missing APIs.

This commit is contained in:
Francois Gouget 2023-05-10 17:16:11 +02:00 committed by Alexandre Julliard
parent 3d246c6643
commit ab3503bf5c
3 changed files with 3 additions and 3 deletions

View file

@ -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;
}

View file

@ -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;
}

View file

@ -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;
}