ntdll/tests: Use win_skip() to skip over unimplemented functionality.

This commit is contained in:
Francois Gouget 2009-02-23 10:42:00 +01:00 committed by Alexandre Julliard
parent 3b072fb772
commit 630d92b947
1 changed files with 2 additions and 2 deletions

View File

@ -318,7 +318,7 @@ START_TEST(change)
HMODULE hntdll = GetModuleHandle("ntdll");
if (!hntdll)
{
skip("not running on NT, skipping test\n");
win_skip("not running on NT, skipping test\n");
return;
}
@ -329,7 +329,7 @@ START_TEST(change)
if (!pNtNotifyChangeDirectoryFile || !pNtCancelIoFile)
{
skip("missing functions, skipping test\n");
win_skip("missing functions, skipping test\n");
return;
}