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/metadatafromobject.c

    r17142 r17144  
    14551455    {
    14561456        psMetadata      *md;
     1457        warpMaskRow     *object;
     1458        bool            status;
     1459
     1460        object = warpMaskRowAlloc("a string");
     1461        if (!object) {
     1462            exit(EXIT_FAILURE);
     1463        }
     1464
     1465        md = warpMaskMetadataFromObject(object);
     1466        if (!md) {
     1467            exit(EXIT_FAILURE);
     1468        }
     1469
     1470        psFree(object);
     1471
     1472        if (strncmp(psMetadataLookupPtr(&status, md, "label"), "a string", MAX_STRING_LENGTH)) {
     1473            psFree(md);
     1474            exit(EXIT_FAILURE);
     1475        }
     1476
     1477        psFree(md);
     1478    }
     1479
     1480    {
     1481        psMetadata      *md;
    14571482        diffRunRow      *object;
    14581483        bool            status;
Note: See TracChangeset for help on using the changeset viewer.