Commit 9472e044 authored by Dmitry Timoshkov's avatar Dmitry Timoshkov Committed by Alexandre Julliard

kernel32: Skip remainder of the time zone test if SystemTimeToTzSpecificLocalTime not present.

parent c0cc85f7
......@@ -277,6 +277,12 @@ static void test_GetTimeZoneInformation(void)
ok(SetEnvironmentVariableA("TZ",NULL) != 0,
"SetEnvironmentVariableA failed\n");
if (!pSystemTimeToTzSpecificLocalTime)
{
skip("SystemTimeToTzSpecificLocalTime not present\n");
return;
}
diff = get_tz_bias(&tzinfo, tz_id);
utc = st;
......
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