Changeset 41294 in vbox
- Timestamp:
- May 15, 2012 9:02:16 AM (13 years ago)
- svn:sync-xref-src-repo-rev:
- 77960
- Location:
- trunk/src/VBox/VMM/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstVMMFork.cpp
r38636 r41294 146 146 * Cleanup. 147 147 */ 148 rc = VMR3PowerOff(pVM); 149 if (!RT_SUCCESS(rc)) 150 { 151 RTPrintf(TESTCASE ": error: failed to power off vm! rc=%Rrc\n", rc); 152 rcErrors++; 153 } 148 154 rc = VMR3Destroy(pVM); 149 155 if (!RT_SUCCESS(rc)) 150 156 { 151 RTPrintf(TESTCASE ": error: failed to destroy vm! rc=% d\n", rc);157 RTPrintf(TESTCASE ": error: failed to destroy vm! rc=%Rrc\n", rc); 152 158 rcErrors++; 153 159 } … … 155 161 else 156 162 { 157 RTPrintf(TESTCASE ": fatal error: failed to create vm! rc=% d\n", rc);163 RTPrintf(TESTCASE ": fatal error: failed to create vm! rc=%Rrc\n", rc); 158 164 rcErrors++; 159 165 } -
trunk/src/VBox/VMM/testcase/tstVMREQ.cpp
r39084 r41294 284 284 * Cleanup. 285 285 */ 286 rc = VMR3PowerOff(pVM); 287 if (!RT_SUCCESS(rc)) 288 { 289 RTPrintf(TESTCASE ": error: failed to power off vm! rc=%Rrc\n", rc); 290 g_cErrors++; 291 } 286 292 rc = VMR3Destroy(pVM); 287 293 if (!RT_SUCCESS(rc))
Note:
See TracChangeset
for help on using the changeset viewer.