mirror of
https://github.com/reactos/reactos.git
synced 2024-11-20 06:15:26 +00:00
[NTDLL_APITEST] Comment out a test that fails on Windows Server 2003
This commit is contained in:
parent
9237c1a455
commit
684b5ce86a
1 changed files with 2 additions and 0 deletions
|
@ -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 */
|
||||
|
|
Loading…
Reference in a new issue