Changeset 19500 in vbox for trunk/src/VBox/VMM/testcase
- Timestamp:
- May 7, 2009 6:23:22 PM (16 years ago)
- Location:
- trunk/src/VBox/VMM/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstAnimate.cpp
r19300 r19500 863 863 if (u32WarpDrive != 100) 864 864 { 865 rc = TM VirtualSetWarpDrive(pVM, u32WarpDrive);865 rc = TMR3SetWarpDrive(pVM, u32WarpDrive); 866 866 if (RT_FAILURE(rc)) 867 867 RTPrintf("warning: TMVirtualSetWarpDrive(,%u) -> %Rrc\n", u32WarpDrive, rc); -
trunk/src/VBox/VMM/testcase/tstVMM.cpp
r19467 r19500 105 105 PTMTIMER pTimer = apTimers[i]; 106 106 107 if ( cLeft == RT_ELEMENTS(apTimers) / 2108 && TMTimerIsActive(pTimer))107 if ( cLeft == RT_ELEMENTS(apTimers) / 2 108 && TMTimerIsActive(pTimer)) 109 109 { 110 rc = TMTimerStop(pTimer);111 RTTEST_CHECK_MSG(hTest, RT_SUCCESS(rc), (hTest, "TMTimerStop: %Rrc\n", rc));110 // rc = TMTimerStop(pTimer); 111 // RTTEST_CHECK_MSG(hTest, RT_SUCCESS(rc), (hTest, "TMTimerStop: %Rrc\n", rc)); 112 112 } 113 113 else
Note:
See TracChangeset
for help on using the changeset viewer.