Changeset 56768 in vbox
- Timestamp:
- Jul 3, 2015 11:29:35 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTR0Timer.cpp
r56767 r56768 487 487 } 488 488 489 #if !defined(RT_OS_SOLARIS) /* Not expected to work on all hosts. */490 489 case TSTRTR0TIMER_ONE_SHOT_RESTART: 491 490 case TSTRTR0TIMER_ONE_SHOT_RESTART_HIRES: 492 491 { 492 #if !defined(RT_OS_SOLARIS) /* Not expected to work on all hosts. */ 493 493 /* Create a one-shot timer and restart it in the callback handler. */ 494 494 PRTTIMER pTimer; … … 516 516 RTR0TESTR0_CHECK_RC(RTTimerDestroy(pTimer), VINF_SUCCESS); 517 517 } 518 #else 519 RTR0TestR0Info("restarting from callback not supported on this platform\n"); 520 521 #endif 518 522 break; 519 523 } 520 #endif 521 522 #if !defined(RT_OS_SOLARIS) && !defined(RT_OS_WINDOWS) /* Not expected to work on all hosts. */ 524 523 525 case TSTRTR0TIMER_ONE_SHOT_DESTROY: 524 526 case TSTRTR0TIMER_ONE_SHOT_DESTROY_HIRES: 525 527 { 528 #if !defined(RT_OS_SOLARIS) && !defined(RT_OS_WINDOWS) /* Not expected to work on all hosts. */ 526 529 /* Create a one-shot timer and destroy it in the callback handler. */ 527 530 PRTTIMER pTimer; … … 552 555 RTR0TESTR0_CHECK_RC(RTTimerDestroy(pTimer), VINF_SUCCESS); 553 556 } 557 #else 558 RTR0TestR0Info("destroying from callback not supported on this platform\n"); 559 #endif 554 560 break; 555 561 } 556 #endif557 562 558 563 case TSTRTR0TIMER_ONE_SHOT_SPECIFIC:
Note:
See TracChangeset
for help on using the changeset viewer.