Changeset 48148 in vbox for trunk/src/VBox/Runtime/testcase
- Timestamp:
- Aug 29, 2013 12:04:40 PM (12 years ago)
- svn:sync-xref-src-repo-rev:
- 88530
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstRTR0TimerDriver.cpp
r48129 r48148 61 61 * Standard timers. 62 62 */ 63 # ifndef RT_OS_SOLARIS // one-shot timers currently not supported on Solaris64 63 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_BASIC, "Basic one shot"); 65 # endif66 64 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_BASIC, "Basic periodic"); 67 65 if (RTTestErrorCount(g_hTest) == 0) 68 66 { 69 67 # if 1 70 # ifndef RT_OS_SOLARIS // one-shot timers currently not supported on Solaris71 68 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_RESTART, "Restart one shot from callback"); 72 69 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_DESTROY, "Destroy one shot from callback"); 73 # endif74 70 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_CSSD_LOOPS, "Create-start-stop-destroy loops"); 75 71 for (uint32_t i = 0; i <= 7; i++) 76 72 RTR3TestR0SimpleTestWithArg(TSTRTR0TIMER_PERIODIC_CHANGE_INTERVAL, i, "Change interval from callback, variation %u", i); 77 73 # endif 78 # ifndef RT_OS_SOLARIS // one-shot timers currently not supported on Solaris79 74 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_SPECIFIC, "One shot cpu specific"); 80 # endif81 # ifndef RT_OS_SOLARIS // periodic specific timers have currently a bug on Solaris82 75 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_SPECIFIC, "Periodic cpu specific"); 83 # endif84 76 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_OMNI, "Periodic omni timer"); 85 77 } … … 108 100 RTR3TestR0SimpleTest(TSTRTR0TIMER_ONE_SHOT_SPECIFIC_HIRES, "One shot hires cpu specific"); 109 101 # endif 110 # ifndef RT_OS_SOLARIS // periodic specific timers have currently a bug on Solaris111 102 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_SPECIFIC_HIRES, "Periodic hires cpu specific"); 112 # endif113 103 RTR3TestR0SimpleTest(TSTRTR0TIMER_PERIODIC_OMNI, "Periodic omni hires timer"); 114 104 }
Note:
See TracChangeset
for help on using the changeset viewer.