ntdll/tests: Use win_skip() to skip over unimplemented functionality.
This commit is contained in:
parent
3b072fb772
commit
630d92b947
|
@ -318,7 +318,7 @@ START_TEST(change)
|
||||||
HMODULE hntdll = GetModuleHandle("ntdll");
|
HMODULE hntdll = GetModuleHandle("ntdll");
|
||||||
if (!hntdll)
|
if (!hntdll)
|
||||||
{
|
{
|
||||||
skip("not running on NT, skipping test\n");
|
win_skip("not running on NT, skipping test\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -329,7 +329,7 @@ START_TEST(change)
|
||||||
|
|
||||||
if (!pNtNotifyChangeDirectoryFile || !pNtCancelIoFile)
|
if (!pNtNotifyChangeDirectoryFile || !pNtCancelIoFile)
|
||||||
{
|
{
|
||||||
skip("missing functions, skipping test\n");
|
win_skip("missing functions, skipping test\n");
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue