[NTDLL_APITEST] Comment out a test that fails on Windows Server 2003

This commit is contained in:
Timo Kreuzer 2023-01-30 23:57:53 +02:00
parent 9237c1a455
commit 684b5ce86a

View file

@ -60,7 +60,9 @@ START_TEST(TimerResolution)
&CurrentResolution);
ok_hex(Status, STATUS_SUCCESS);
printf("Current resolution: %lu ; maximum resolution: %lu\n", CurrentResolution, MaximumResolution);
#if 0 // Why? This doesn't hold true on Windows Server 2003.
ok(abs((LONG)MaximumResolution - (LONG)CurrentResolution) < 200, "Current resolution: %lu became too low! (maximum resolution: %lu)\n", CurrentResolution, MaximumResolution);
#endif
/* Get the current timer resolution */
Status = NtSetTimerResolution(0, /* Ignored */