IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Oct 30, 2007, 4:45:31 PM (19 years ago)
Author:
jhoblitt
Message:

update

File:
1 edited

Legend:

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

    r15420 r15421  
    1313        }
    1414
     15        if(!pzDataStoreCreateTable(dbh)) {
     16            exit(EXIT_FAILURE);
     17        }
     18
     19        psDBCleanup(dbh);
     20    }
     21
     22    {
     23        psDB            *dbh;
     24
     25        dbh = psDBInit("localhost", "test", NULL, "test");
     26        if (!dbh) {
     27            exit(EXIT_FAILURE);
     28        }
     29
    1530        if(!summitExpCreateTable(dbh)) {
    1631            exit(EXIT_FAILURE);
     
    193208        }
    194209
    195         if(!chipInputImfileCreateTable(dbh)) {
    196             exit(EXIT_FAILURE);
    197         }
    198 
    199         psDBCleanup(dbh);
    200     }
    201 
    202     {
    203         psDB            *dbh;
    204 
    205         dbh = psDBInit("localhost", "test", NULL, "test");
    206         if (!dbh) {
    207             exit(EXIT_FAILURE);
    208         }
    209 
    210210        if(!chipProcessedImfileCreateTable(dbh)) {
    211211            exit(EXIT_FAILURE);
     
    584584
    585585        if(!detRunSummaryCreateTable(dbh)) {
     586            exit(EXIT_FAILURE);
     587        }
     588
     589        psDBCleanup(dbh);
     590    }
     591
     592    {
     593        psDB            *dbh;
     594
     595        dbh = psDBInit("localhost", "test", NULL, "test");
     596        if (!dbh) {
     597            exit(EXIT_FAILURE);
     598        }
     599
     600        if(!detRegisteredImfileCreateTable(dbh)) {
     601            exit(EXIT_FAILURE);
     602        }
     603
     604        psDBCleanup(dbh);
     605    }
     606
     607    {
     608        psDB            *dbh;
     609
     610        dbh = psDBInit("localhost", "test", NULL, "test");
     611        if (!dbh) {
     612            exit(EXIT_FAILURE);
     613        }
     614
     615        if(!detCorrectedExpCreateTable(dbh)) {
     616            exit(EXIT_FAILURE);
     617        }
     618
     619        psDBCleanup(dbh);
     620    }
     621
     622    {
     623        psDB            *dbh;
     624
     625        dbh = psDBInit("localhost", "test", NULL, "test");
     626        if (!dbh) {
     627            exit(EXIT_FAILURE);
     628        }
     629
     630        if(!detCorrectedImfileCreateTable(dbh)) {
     631            exit(EXIT_FAILURE);
     632        }
     633
     634        psDBCleanup(dbh);
     635    }
     636
     637    {
     638        psDB            *dbh;
     639
     640        dbh = psDBInit("localhost", "test", NULL, "test");
     641        if (!dbh) {
     642            exit(EXIT_FAILURE);
     643        }
     644
     645        if(!magicRunCreateTable(dbh)) {
     646            exit(EXIT_FAILURE);
     647        }
     648
     649        psDBCleanup(dbh);
     650    }
     651
     652    {
     653        psDB            *dbh;
     654
     655        dbh = psDBInit("localhost", "test", NULL, "test");
     656        if (!dbh) {
     657            exit(EXIT_FAILURE);
     658        }
     659
     660        if(!magicInputSkyfileCreateTable(dbh)) {
     661            exit(EXIT_FAILURE);
     662        }
     663
     664        psDBCleanup(dbh);
     665    }
     666
     667    {
     668        psDB            *dbh;
     669
     670        dbh = psDBInit("localhost", "test", NULL, "test");
     671        if (!dbh) {
     672            exit(EXIT_FAILURE);
     673        }
     674
     675        if(!magicTreeCreateTable(dbh)) {
     676            exit(EXIT_FAILURE);
     677        }
     678
     679        psDBCleanup(dbh);
     680    }
     681
     682    {
     683        psDB            *dbh;
     684
     685        dbh = psDBInit("localhost", "test", NULL, "test");
     686        if (!dbh) {
     687            exit(EXIT_FAILURE);
     688        }
     689
     690        if(!magicNodeResultCreateTable(dbh)) {
     691            exit(EXIT_FAILURE);
     692        }
     693
     694        psDBCleanup(dbh);
     695    }
     696
     697    {
     698        psDB            *dbh;
     699
     700        dbh = psDBInit("localhost", "test", NULL, "test");
     701        if (!dbh) {
     702            exit(EXIT_FAILURE);
     703        }
     704
     705        if(!magicMaskCreateTable(dbh)) {
     706            exit(EXIT_FAILURE);
     707        }
     708
     709        psDBCleanup(dbh);
     710    }
     711
     712    {
     713        psDB            *dbh;
     714
     715        dbh = psDBInit("localhost", "test", NULL, "test");
     716        if (!dbh) {
     717            exit(EXIT_FAILURE);
     718        }
     719
     720        if(!magicSkyfileMaskCreateTable(dbh)) {
    586721            exit(EXIT_FAILURE);
    587722        }
Note: See TracChangeset for help on using the changeset viewer.