Changeset 56775 in vbox for trunk/src/VBox/Runtime/testcase
- Timestamp:
- Jul 3, 2015 12:20:08 PM (10 years ago)
- svn:sync-xref-src-repo-rev:
- 101424
- Location:
- trunk/src/VBox/Runtime/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTR0Timer.cpp
r56768 r56775 447 447 { 448 448 RTR0TestR0Info("one-shot timer are not supported, skipping\n"); 449 RTR0TESTR0_SKIP(); 449 450 break; 450 451 } … … 500 501 { 501 502 RTR0TestR0Info("one-shot timer are not supported, skipping\n"); 503 RTR0TESTR0_SKIP(); 502 504 break; 503 505 } … … 518 520 #else 519 521 RTR0TestR0Info("restarting from callback not supported on this platform\n"); 520 522 RTR0TESTR0_SKIP(); 521 523 #endif 522 524 break; … … 536 538 { 537 539 RTR0TestR0Info("one-shot timer are not supported, skipping\n"); 540 RTR0TESTR0_SKIP(); 538 541 break; 539 542 } … … 557 560 #else 558 561 RTR0TestR0Info("destroying from callback not supported on this platform\n"); 562 RTR0TESTR0_SKIP(); 559 563 #endif 560 564 break; … … 582 586 { 583 587 RTR0TestR0Info("one-shot specific timer are not supported, skipping\n"); 588 RTR0TESTR0_SKIP(); 584 589 break; 585 590 } … … 712 717 RTR0TestR0Info("RTTimerChangeInterval not supported, skipped"); 713 718 RTR0TESTR0_CHECK_RC(RTTimerDestroy(pTimer), VINF_SUCCESS); 719 RTR0TESTR0_SKIP(); 714 720 break; 715 721 } … … 752 758 { 753 759 RTR0TestR0Info("specific timer are not supported, skipping\n"); 760 RTR0TESTR0_SKIP(); 754 761 break; 755 762 } -
trunk/src/VBox/Runtime/testcase/tstRTR0TimerDriver.cpp
r56759 r56775 76 76 { 77 77 # if 1 78 # if !defined(RT_OS_SOLARIS) && !defined(RT_OS_WINDOWS)79 /* Solaris cannot call back into cyclic subsystem from a cyclic callback. */80 78 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_RESTART, "Restart one shot from callback"); 81 79 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_DESTROY, "Destroy one shot from callback"); 82 # endif83 80 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_CSSD_LOOPS, "Create-start-stop-destroy loops"); 84 81 for (uint32_t i = 0; i <= 7; i++) … … 100 97 { 101 98 # if 1 102 # if !defined(RT_OS_SOLARIS) && !defined(RT_OS_WINDOWS)103 /* Solaris cannot call back into cyclic subsystem from a cyclic callback. */104 99 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_RESTART_HIRES, "Restart hires one shot from callback"); 105 100 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_DESTROY_HIRES, "Destroy hires one shot from callback"); 106 # endif107 101 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_CSSD_LOOPS_HIRES, "Create-start-stop-destroy loops, hires"); 108 102 for (uint32_t i = 0; i <= 7; i++)
Note:
See TracChangeset
for help on using the changeset viewer.