Changeset 25605 in vbox
- Timestamp:
- Dec 31, 2009 2:30:48 AM (15 years ago)
- svn:sync-xref-src-repo-rev:
- 56296
- Location:
- trunk/src/VBox/Runtime/testcase
- Files:
-
- 1 edited
- 1 moved
Legend:
- Unmodified
- Added
- Removed
-
trunk/src/VBox/Runtime/testcase/Makefile.kmk
r25516 r25605 54 54 tstRTCidr \ 55 55 tstRTCritSect \ 56 tstDeadlock \57 56 tstRTDigest \ 58 57 tstDir \ … … 76 75 tstLdr-4 \ 77 76 tstLdrLoad \ 77 tstRTLockValidator \ 78 78 tstLog \ 79 79 tstMemAutoPtr \ … … 170 170 tstRTCritSectW32_DEFS = TRY_WIN32_CRIT 171 171 172 tstDeadlock_SOURCES = tstDeadlock.cpp173 174 172 tstRTDigest_SOURCES = tstRTDigest.cpp 175 173 … … 296 294 297 295 tstLdrLoad_SOURCES = tstLdrLoad.cpp 296 297 tstRTLockValidator_TEMPLATE = VBOXR3TSTEXE 298 tstRTLockValidator_SOURCES = tstRTLockValidator.cpp 298 299 299 300 tstLog_SOURCES = tstLog.cpp -
trunk/src/VBox/Runtime/testcase/tstRTLockValidator.cpp
r25604 r25605 1 1 /* $Id$ */ 2 2 /** @file 3 * IPRT Testcase - Deadlock detection.3 * IPRT Testcase - RTLockValidator. 4 4 */ 5 5 … … 178 178 * Init. 179 179 */ 180 int rc = RTTestInitAndCreate("tstRT Deadlock", &g_hTest);180 int rc = RTTestInitAndCreate("tstRTLockValidator", &g_hTest); 181 181 if (rc) 182 182 return rc;
Note:
See TracChangeset
for help on using the changeset viewer.