Changeset 38636 in vbox for trunk/src/VBox/Main/testcase
- Timestamp:
- Sep 5, 2011 1:49:45 PM (13 years ago)
- Location:
- trunk/src/VBox/Main/testcase
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Main/testcase/tstAPI.cpp
r36128 r38636 201 201 * the support driver. 202 202 */ 203 RTR3Init ();203 RTR3InitExe(argc, &argv, 0); 204 204 205 205 HRESULT rc; -
trunk/src/VBox/Main/testcase/tstCollector.cpp
r35368 r38636 148 148 * the support driver. 149 149 */ 150 int rc = RTR3Init ();151 if (RT_FAILURE(rc)) 152 { 153 RTPrintf("tstCollector: RTR3Init () -> %d\n", rc);150 int rc = RTR3InitExe(argc, &argv, 0); 151 if (RT_FAILURE(rc)) 152 { 153 RTPrintf("tstCollector: RTR3InitExe() -> %d\n", rc); 154 154 return 1; 155 155 } -
trunk/src/VBox/Main/testcase/tstOVF.cpp
r37862 r38636 282 282 int main(int argc, char *argv[]) 283 283 { 284 RTR3Init ();284 RTR3InitExe(argc, &argv, 0); 285 285 286 286 HRESULT rc = S_OK;
Note:
See TracChangeset
for help on using the changeset viewer.