IPP Software Navigation Tools IPP Links Communication Pan-STARRS Links

Ignore:
Timestamp:
Nov 9, 2007, 3:55:36 PM (19 years ago)
Author:
jhoblitt
Message:

add calibration.md

File:
1 edited

Legend:

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

    r15421 r15569  
    725725    }
    726726
     727    {
     728        psDB            *dbh;
     729
     730        dbh = psDBInit("localhost", "test", NULL, "test");
     731        if (!dbh) {
     732            exit(EXIT_FAILURE);
     733        }
     734
     735        if (!calDBDropTable(dbh)) {
     736            exit(EXIT_FAILURE);
     737        }
     738
     739        psDBCleanup(dbh);
     740    }
     741
     742    {
     743        psDB            *dbh;
     744
     745        dbh = psDBInit("localhost", "test", NULL, "test");
     746        if (!dbh) {
     747            exit(EXIT_FAILURE);
     748        }
     749
     750        if (!calRunDropTable(dbh)) {
     751            exit(EXIT_FAILURE);
     752        }
     753
     754        psDBCleanup(dbh);
     755    }
     756
    727757    exit(EXIT_SUCCESS);
    728758}
Note: See TracChangeset for help on using the changeset viewer.