Commit 3c24481d authored by Nikolay Sivov's avatar Nikolay Sivov Committed by Alexandre Julliard

user32/tests: Use win_skip() where appropriate.

parent 0ad3537d
......@@ -1115,7 +1115,7 @@ static void test_IME(void)
if (!GetProcAddress(GetModuleHandleA("user32.dll"), "BroadcastSystemMessageExA"))
{
skip("BroadcastSystemMessageExA not available, skipping IME class test\n");
win_skip("BroadcastSystemMessageExA not available, skipping IME class test\n");
return;
}
......
......@@ -1361,7 +1361,7 @@ static void test_GetMouseMovePointsEx(void)
/* Get a valid content for the input struct */
if(!GetCursorPos(&point)) {
skip("GetCursorPos() failed with error %u\n", GetLastError());
win_skip("GetCursorPos() failed with error %u\n", GetLastError());
return;
}
memset(&in, 0, sizeof(MOUSEMOVEPOINT));
......
......@@ -932,7 +932,7 @@ START_TEST(winstation)
GetProcessWindowStation();
if (GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
{
skip("WindowStation calls not supported on this platform\n");
win_skip("WindowStation calls not supported on this platform\n");
return;
}
......
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