ntdll/tests: Show that we are skipping tests.
This commit is contained in:
parent
f812d30486
commit
1010768d8e
|
@ -275,6 +275,11 @@ static void testExpand(void)
|
|||
START_TEST(env)
|
||||
{
|
||||
HMODULE mod = GetModuleHandleA("ntdll.dll");
|
||||
if (!mod)
|
||||
{
|
||||
win_skip("Not running on NT, skipping tests\n");
|
||||
return;
|
||||
}
|
||||
|
||||
pRtlMultiByteToUnicodeN = (void *)GetProcAddress(mod,"RtlMultiByteToUnicodeN");
|
||||
pRtlCreateEnvironment = (void*)GetProcAddress(mod, "RtlCreateEnvironment");
|
||||
|
|
Loading…
Reference in New Issue