IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Mar 25, 2008, 1:14:07 PM (18 years ago)
Author:
jhoblitt
Message:

add warpMask table

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/ippdb/tests/alloc.c

    r17142 r17144  
    13281328
    13291329    {
     1330        warpMaskRow     *object;
     1331
     1332        object = warpMaskRowAlloc("a string"    );
     1333
     1334        if (!object) {
     1335            exit(EXIT_FAILURE);
     1336        }
     1337
     1338        if (strncmp(object->label, "a string", MAX_STRING_LENGTH)) {
     1339            psFree(object);
     1340            exit(EXIT_FAILURE);
     1341        }
     1342
     1343        psFree(object);
     1344    }
     1345
     1346    {
    13301347        diffRunRow      *object;
    13311348
Note: See TracChangeset for help on using the changeset viewer.