IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Jun 9, 2008, 5:11:49 PM (18 years ago)
Author:
jhoblitt
Message:

faketool merge

File:
1 edited

Legend:

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

    r17144 r18044  
    253253        }
    254254
     255        if(!fakeRunCreateTable(dbh)) {
     256            exit(EXIT_FAILURE);
     257        }
     258
     259        psDBCleanup(dbh);
     260    }
     261
     262    {
     263        psDB            *dbh;
     264
     265        dbh = psDBInit("localhost", "test", NULL, "test");
     266        if (!dbh) {
     267            exit(EXIT_FAILURE);
     268        }
     269
     270        if(!fakeProcessedImfileCreateTable(dbh)) {
     271            exit(EXIT_FAILURE);
     272        }
     273
     274        psDBCleanup(dbh);
     275    }
     276
     277    {
     278        psDB            *dbh;
     279
     280        dbh = psDBInit("localhost", "test", NULL, "test");
     281        if (!dbh) {
     282            exit(EXIT_FAILURE);
     283        }
     284
     285        if(!fakeMaskCreateTable(dbh)) {
     286            exit(EXIT_FAILURE);
     287        }
     288
     289        psDBCleanup(dbh);
     290    }
     291
     292    {
     293        psDB            *dbh;
     294
     295        dbh = psDBInit("localhost", "test", NULL, "test");
     296        if (!dbh) {
     297            exit(EXIT_FAILURE);
     298        }
     299
    255300        if(!warpRunCreateTable(dbh)) {
    256301            exit(EXIT_FAILURE);
Note: See TracChangeset for help on using the changeset viewer.