Changeset 38636 in vbox for trunk/src/VBox/VMM
- Timestamp:
- Sep 5, 2011 1:49:45 PM (14 years ago)
- svn:sync-xref-src-repo-rev:
- 73843
- Location:
- trunk/src/VBox/VMM/testcase
- Files:
-
- 16 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/VMM/testcase/tstAnimate.cpp
r38324 r38636 615 615 int rcRet = 1; 616 616 int rc; 617 RTR3Init AndSUPLib();617 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 618 618 619 619 /* -
trunk/src/VBox/VMM/testcase/tstCFGM.cpp
r35346 r38636 39 39 * Init runtime. 40 40 */ 41 RTR3Init AndSUPLib();41 RTR3InitExeNoArguments(RTR3INIT_FLAGS_SUPLIB); 42 42 43 43 /* -
trunk/src/VBox/VMM/testcase/tstCompiler.cpp
r37955 r38636 225 225 int main() 226 226 { 227 int rc = RTR3Init ();227 int rc = RTR3InitExeNoArguments(0); 228 228 if (RT_FAILURE(rc)) 229 229 return RTMsgInitFailure(rc); -
trunk/src/VBox/VMM/testcase/tstCompressionBenchmark.cpp
r33550 r38636 233 233 int main(int argc, char **argv) 234 234 { 235 RTR3Init ();235 RTR3InitExe(argc, &argv, 0); 236 236 237 237 /* -
trunk/src/VBox/VMM/testcase/tstGlobalConfig.cpp
r35346 r38636 41 41 int main(int argc, char **argv) 42 42 { 43 RTR3Init ();43 RTR3InitExe(argc, &argv, 0); 44 44 45 45 /* -
trunk/src/VBox/VMM/testcase/tstInstrEmul.cpp
r35346 r38636 36 36 int rcRet = 0; /* error count. */ 37 37 38 RTR3Init ();38 RTR3InitExe(argc, &argv, 0); 39 39 RTPrintf("tstInstrEmul: TESTING...\n"); 40 40 -
trunk/src/VBox/VMM/testcase/tstMMHyperHeap.cpp
r35346 r38636 44 44 * Init runtime. 45 45 */ 46 RTR3Init ();46 RTR3InitExe(argc, &argv, 0); 47 47 48 48 /* -
trunk/src/VBox/VMM/testcase/tstMicro.cpp
r35346 r38636 339 339 int rcRet = 0; /* error count. */ 340 340 341 RTR3Init AndSUPLib();341 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 342 342 343 343 /* -
trunk/src/VBox/VMM/testcase/tstPDMAsyncCompletion.cpp
r35346 r38636 75 75 { 76 76 int rcRet = 0; /* error count */ 77 int rc = VINF_SUCCESS;78 77 PPDMASYNCCOMPLETIONENDPOINT pEndpointSrc, pEndpointDst; 79 78 80 RTR3Init AndSUPLib();79 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 81 80 82 81 if (argc != 3) … … 87 86 88 87 PVM pVM; 89 rc = VMR3Create(1, NULL, NULL, NULL, NULL, NULL, &pVM);88 int rc = VMR3Create(1, NULL, NULL, NULL, NULL, NULL, &pVM); 90 89 if (RT_SUCCESS(rc)) 91 90 { -
trunk/src/VBox/VMM/testcase/tstPDMAsyncCompletionStress.cpp
r35346 r38636 570 570 { 571 571 int rcRet = 0; /* error count */ 572 int rc = VINF_SUCCESS; 573 574 RTR3InitAndSUPLib(); 572 573 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 575 574 576 575 PVM pVM; 577 rc = VMR3Create(1, NULL, NULL, NULL, NULL, NULL, &pVM);576 int rc = VMR3Create(1, NULL, NULL, NULL, NULL, NULL, &pVM); 578 577 if (RT_SUCCESS(rc)) 579 578 { -
trunk/src/VBox/VMM/testcase/tstSSM.cpp
r35346 r38636 680 680 * Init runtime and static data. 681 681 */ 682 RTR3Init AndSUPLib();682 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 683 683 RTPrintf("tstSSM: TESTING...\n"); 684 684 initBigMem(); -
trunk/src/VBox/VMM/testcase/tstVMM-HwAccm.cpp
r35346 r38636 65 65 int rcRet = 0; /* error count. */ 66 66 67 RTR3Init AndSUPLib();67 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 68 68 69 69 /* -
trunk/src/VBox/VMM/testcase/tstVMM.cpp
r35346 r38636 31 31 #include <iprt/getopt.h> 32 32 #include <iprt/initterm.h> 33 #include <iprt/message.h> 33 34 #include <iprt/semaphore.h> 34 35 #include <iprt/stream.h> … … 180 181 * Init runtime and the test environment. 181 182 */ 182 int rc = RTR3Init AndSUPLib();183 int rc = RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 183 184 if (RT_FAILURE(rc)) 184 { 185 RTPrintf("tstVMM: RTR3InitAndSUPLib failed: %Rrc\n", rc); 186 return 1; 187 } 185 return RTMsgInitFailure(rc); 188 186 RTTEST hTest; 189 187 rc = RTTestCreate("tstVMM", &hTest); -
trunk/src/VBox/VMM/testcase/tstVMMFork.cpp
r35346 r38636 49 49 * Initialize the runtime. 50 50 */ 51 RTR3Init AndSUPLib();51 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 52 52 53 53 #ifndef AUTO_TEST_ARGS -
trunk/src/VBox/VMM/testcase/tstVMMR0CallHost-1.cpp
r35346 r38636 145 145 RTTEST hTest; 146 146 int rc; 147 if ( RT_FAILURE(rc = RTR3Init ())147 if ( RT_FAILURE(rc = RTR3InitExeNoArguments(0)) 148 148 || RT_FAILURE(rc = RTTestCreate("tstVMMR0CallHost-1", &hTest))) 149 149 { -
trunk/src/VBox/VMM/testcase/tstVMREQ.cpp
r35346 r38636 208 208 int main(int argc, char **argv) 209 209 { 210 RTR3Init AndSUPLib();210 RTR3InitExe(argc, &argv, RTR3INIT_FLAGS_SUPLIB); 211 211 RTPrintf(TESTCASE ": TESTING...\n"); 212 212
Note:
See TracChangeset
for help on using the changeset viewer.