Module: wine Branch: master Commit: 3c24481dea4e724f9c8ec8a4d66754cbfd254cc1 URL: http://source.winehq.org/git/wine.git/?a=commit;h=3c24481dea4e724f9c8ec8a4d6...
Author: Nikolay Sivov nsivov@codeweavers.com Date: Wed Nov 5 15:11:18 2014 +0300
user32/tests: Use win_skip() where appropriate.
---
dlls/user32/tests/class.c | 2 +- dlls/user32/tests/input.c | 2 +- dlls/user32/tests/winstation.c | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/dlls/user32/tests/class.c b/dlls/user32/tests/class.c index 2218e79..95cfc3c 100644 --- a/dlls/user32/tests/class.c +++ b/dlls/user32/tests/class.c @@ -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; }
diff --git a/dlls/user32/tests/input.c b/dlls/user32/tests/input.c index 3ce0570..9b898d3 100644 --- a/dlls/user32/tests/input.c +++ b/dlls/user32/tests/input.c @@ -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)); diff --git a/dlls/user32/tests/winstation.c b/dlls/user32/tests/winstation.c index 0889dac..c09ebb1 100644 --- a/dlls/user32/tests/winstation.c +++ b/dlls/user32/tests/winstation.c @@ -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; }