mirror of
https://github.com/reactos/wine.git
synced 2024-11-27 21:50:37 +00:00
kernel32/tests: Skip not implemented functions.
This commit is contained in:
parent
c9434956d5
commit
e1f88e5f69
@ -298,6 +298,12 @@ static void test_GetTimeZoneInformation(void)
|
||||
utc = st;
|
||||
SetLastError(0xdeadbeef);
|
||||
res = pSystemTimeToTzSpecificLocalTime(&tzinfo, &utc, ¤t);
|
||||
if (!res && GetLastError() == ERROR_CALL_NOT_IMPLEMENTED)
|
||||
{
|
||||
skip("SystemTimeToTzSpecificLocalTime is not implemented\n");
|
||||
return;
|
||||
}
|
||||
|
||||
ok(res, "SystemTimeToTzSpecificLocalTime error %u\n", GetLastError());
|
||||
s_time = system_time_to_minutes(¤t);
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user