kernel32/tests: Add a skip message for win95.
This commit is contained in:
parent
ee69c6141b
commit
fe5b8ada64
|
@ -38,11 +38,17 @@ static void test_timer(void)
|
||||||
|
|
||||||
pCreateWaitableTimerA = (fnCreateWaitableTimerA) GetProcAddress( hker, "CreateWaitableTimerA");
|
pCreateWaitableTimerA = (fnCreateWaitableTimerA) GetProcAddress( hker, "CreateWaitableTimerA");
|
||||||
if( !pCreateWaitableTimerA )
|
if( !pCreateWaitableTimerA )
|
||||||
|
{
|
||||||
|
skip("CreateWaitableTimerA is not available\n");
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
pSetWaitableTimer = (fnSetWaitableTimer) GetProcAddress( hker, "SetWaitableTimer");
|
pSetWaitableTimer = (fnSetWaitableTimer) GetProcAddress( hker, "SetWaitableTimer");
|
||||||
if( !pSetWaitableTimer )
|
if( !pSetWaitableTimer )
|
||||||
|
{
|
||||||
|
skip("SetWaitableTimer is not available\n");
|
||||||
return;
|
return;
|
||||||
|
}
|
||||||
|
|
||||||
/* try once with a positive number */
|
/* try once with a positive number */
|
||||||
handle = pCreateWaitableTimerA( NULL, 0, NULL );
|
handle = pCreateWaitableTimerA( NULL, 0, NULL );
|
||||||
|
|
Loading…
Reference in New Issue