Ignore:
Timestamp:
Nov 8, 2006, 5:10:14 AM (19 years ago)
Author:
bird
Message:

Working on the mapping stuff (windows is gonna be a headache).

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/kLdr/tstkLdrMod.c

    r2859 r2860  
    378378
    379379/**
     380 * Tests the mapping related api.
     381 */
     382static 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/**
    380395 * Performs basic module loader tests on the specified file.
    381396 */
     
    390405    {
    391406        rc = BasicTestsSub(pMod);
     407        if (!rc)
     408            rc = BasicTestsSubMap(pMod);
    392409        rc2 = kLdrModClose(pMod);
    393410        if (rc2)
Note: See TracChangeset for help on using the changeset viewer.