mirror of
https://github.com/reactos/reactos.git
synced 2025-04-06 05:34:22 +00:00
[NTDLL_APITEST]
- Test that NtSetTimerResolution appropriately returns STATUS_TIMER_RESOLUTION_NOT_SET. Patch by Aleksandar Andrejevic. CORE-7387 svn path=/trunk/; revision=60406
This commit is contained in:
parent
8d5a1b7ca7
commit
1e8f970eaa
1 changed files with 8 additions and 0 deletions
|
@ -75,4 +75,12 @@ START_TEST(TimerResolution)
|
|||
|
||||
/* Since we have changed the resolution earlier, it returns STATUS_SUCCESS. */
|
||||
ok_hex(Status, STATUS_SUCCESS);
|
||||
|
||||
/* Get the current timer resolution again */
|
||||
Status = NtSetTimerResolution(0, /* Ignored */
|
||||
FALSE, /* Don't change resolution */
|
||||
&CurrentResolution);
|
||||
|
||||
/* The resolution is not changed now, so it should return STATUS_TIMER_RESOLUTION_NOT_SET */
|
||||
ok_hex(Status, STATUS_TIMER_RESOLUTION_NOT_SET);
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue