Changeset 2860 for trunk/kLdr/tstkLdrMod.c
- Timestamp:
- Nov 8, 2006, 5:10:14 AM (19 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/kLdr/tstkLdrMod.c
r2859 r2860 378 378 379 379 /** 380 * Tests the mapping related api. 381 */ 382 static int BasicTestsSubMap(PKLDRMOD pMod) 383 { 384 int rc; 385 386 rc = kLdrModMap(pMod); 387 if (rc) 388 return Failure("kLdrModMap failed, rc=%d\n", rc); 389 390 return 0; 391 } 392 393 394 /** 380 395 * Performs basic module loader tests on the specified file. 381 396 */ … … 390 405 { 391 406 rc = BasicTestsSub(pMod); 407 if (!rc) 408 rc = BasicTestsSubMap(pMod); 392 409 rc2 = kLdrModClose(pMod); 393 410 if (rc2)
Note:
See TracChangeset
for help on using the changeset viewer.