Commit e1f88e5f authored by Paul Vriens's avatar Paul Vriens Committed by Alexandre Julliard

kernel32/tests: Skip not implemented functions.

parent c9434956
......@@ -298,6 +298,12 @@ static void test_GetTimeZoneInformation(void)
utc = st;
SetLastError(0xdeadbeef);
res = pSystemTimeToTzSpecificLocalTime(&tzinfo, &utc, &current);
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(&current);
......
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