IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Aug 23, 2006, 1:55:03 PM (20 years ago)
Author:
jhoblitt
Message:

VERSION 0.0.32

File:
1 edited

Legend:

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

    r8380 r8528  
    581581    }
    582582
     583    {
     584        psDB            *dbh;
     585        detRunSummaryRow *object;
     586
     587        dbh = psDBInit("localhost", "test", NULL, "test");
     588        if (!dbh) {
     589            exit(EXIT_FAILURE);
     590        }
     591
     592        object = detRunSummaryPopObject(dbh);
     593        if (!object) {
     594            exit(EXIT_FAILURE);
     595        }
     596
     597        psFree(object);
     598        psDBCleanup(dbh);
     599    }
     600
    583601    exit(EXIT_SUCCESS);
    584602}
Note: See TracChangeset for help on using the changeset viewer.