kernel32/tests: Skip not implemented functions.

This commit is contained in:
Paul Vriens 2008-01-10 11:05:43 +01:00 committed by Alexandre Julliard
parent c9434956d5
commit e1f88e5f69
1 changed files with 6 additions and 0 deletions

View File

@ -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);