Changeset 20606 in vbox for trunk/src/VBox/Runtime/testcase/tstFork.cpp
- Timestamp:
- Jun 15, 2009 11:49:07 PM (16 years ago)
- svn:sync-xref-src-repo-rev:
- 48658
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/tstFork.cpp
r18991 r20606 51 51 * Init the runtime and stuff. 52 52 */ 53 int rc;54 53 RTTEST hTest; 55 if ( RT_FAILURE(rc = RTR3Init()) 56 || RT_FAILURE(rc = RTTestCreate("tstFork", &hTest))) 57 { 58 RTPrintf("tstFork: fatal initialization error: %Rrc\n", rc); 59 return 1; 60 } 54 int rc = RTTestInitAndCreate("tstFork", &hTest); 55 if (rc) 56 return rc; 61 57 RTTestBanner(hTest); 62 58
Note:
See TracChangeset
for help on using the changeset viewer.