IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 16, 2008, 12:32:27 PM (18 years ago)
Author:
jhoblitt
Message:

update

File:
1 edited

Legend:

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

    r18595 r20205  
    778778        }
    779779
    780         if(!flatcorrExpCreateTable(dbh)) {
     780        if(!flatcorrChipLinkCreateTable(dbh)) {
     781            exit(EXIT_FAILURE);
     782        }
     783
     784        psDBCleanup(dbh);
     785    }
     786
     787    {
     788        psDB            *dbh;
     789
     790        dbh = psDBInit("localhost", "test", NULL, "test");
     791        if (!dbh) {
     792            exit(EXIT_FAILURE);
     793        }
     794
     795        if(!flatcorrCamLinkCreateTable(dbh)) {
    781796            exit(EXIT_FAILURE);
    782797        }
     
    794809
    795810        if(!pstampDataStoreCreateTable(dbh)) {
     811            exit(EXIT_FAILURE);
     812        }
     813
     814        psDBCleanup(dbh);
     815    }
     816
     817    {
     818        psDB            *dbh;
     819
     820        dbh = psDBInit("localhost", "test", NULL, "test");
     821        if (!dbh) {
     822            exit(EXIT_FAILURE);
     823        }
     824
     825        if(!pstampProjectCreateTable(dbh)) {
    796826            exit(EXIT_FAILURE);
    797827        }
Note: See TracChangeset for help on using the changeset viewer.