Changeset 20108 in vbox
- Timestamp:
- May 27, 2009 10:31:48 PM (16 years ago)
- Location:
- trunk/src/VBox/Runtime/testcase
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r20051 r20108 165 165 tstRTCritSectW32_DEFS = TRY_WIN32_CRIT 166 166 167 tstDarwinSched_SOURCES = tstDarwinSched.cpp168 169 167 tstDeadlock_SOURCES = tstDeadlock.cpp 170 168 … … 185 183 186 184 tstFileAppendWin-1_SOURCES = tstFileAppendWin-1.cpp 185 186 tstFileAio_SOURCES = tstFileAio.cpp 187 187 188 188 tstFileLock_SOURCES = tstFileLock.cpp … … 332 332 tstRTProcIsRunningByName_SOURCES = tstRTProcIsRunningByName.cpp 333 333 334 tstRTS3_SOURCES = tstRTS3.cpp 335 334 336 tstSemMutex_SOURCES = tstSemMutex.cpp 335 337 … … 369 371 tstUuid_SOURCES = tstUuid.cpp 370 372 371 tstRTS3_SOURCES = tstRTS3.cpp372 373 373 tstUtf8_SOURCES = tstUtf8.cpp 374 374 375 tstFileAio_SOURCES = tstFileAio.cpp 375 376 # 377 # odds and ends 378 # 379 380 tstDarwinSched_SOURCES = tstDarwinSched.cpp 376 381 377 382 ntGetTimerResolution_SOURCES = ntGetTimerResolution.cpp -
trunk/src/VBox/Runtime/testcase/tstRTS3.cpp
r20043 r20108 39 39 #include <iprt/test.h> 40 40 41 42 /******************************************************************************* 43 * Defined Constants And Macros * 44 *******************************************************************************/ 41 45 /* Manual configuration of this testcase */ 42 46 #define TSTS3_CREATEBUCKET … … 176 180 { 177 181 /* 182 * Initialize IPRT and create the test. 183 */ 184 int rc = RTR3Init(); 185 if (RT_FAILURE(rc)) 186 return 1; 187 RTTEST hTest; 188 rc = RTTestCreate("tstRTS3", &hTest); 189 if (RT_FAILURE(rc)) 190 return 1; 191 RTTestBanner(hTest); 192 193 /* 178 194 * If no args, display usage. 179 195 */ … … 183 199 return 1; 184 200 } 185 186 int rc = RTR3Init();187 if (RT_FAILURE(rc))188 return 1;189 190 RTTEST hTest;191 rc = RTTestCreate("tstRTS3", &hTest);192 if (RT_FAILURE(rc))193 return 1;194 RTTestBanner(hTest);195 201 196 202 RTTestSubF(hTest, "Create S3");
Note:
See TracChangeset
for help on using the changeset viewer.