Commit 1010768d authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

ntdll/tests: Show that we are skipping tests.

parent f812d304
......@@ -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");
......
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