mirror of
https://github.com/reactos/wine.git
synced 2024-11-29 14:40:56 +00:00
kernel32: Skip remainder of the time zone test if SystemTimeToTzSpecificLocalTime not present.
This commit is contained in:
parent
c0cc85f78e
commit
9472e04447
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user