X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-01-new_database.c;h=a5f0dd3727edb25bd3ecdde209a38bd87e8dc4eb;hp=ea385b60e325dbcd54eccf742c62f373509cc62f;hb=0b93bd102aad6b61f1e569fb12aabc6352a1d7cd;hpb=5e8b9af5e7fe5f1ccac407873a3b782b8a629782 diff --git a/ccan/tdb2/test/run-01-new_database.c b/ccan/tdb2/test/run-01-new_database.c index ea385b60..a5f0dd37 100644 --- a/ccan/tdb2/test/run-01-new_database.c +++ b/ccan/tdb2/test/run-01-new_database.c @@ -1,12 +1,9 @@ -#include -#include -#include -#include -#include -#include -#include +#include +#include "tdb2-source.h" #include +#include #include "logging.h" +#include "failtest_helper.h" int main(int argc, char *argv[]) { @@ -14,18 +11,29 @@ int main(int argc, char *argv[]) struct tdb_context *tdb; int flags[] = { TDB_INTERNAL, TDB_DEFAULT, TDB_NOMMAP, TDB_INTERNAL|TDB_CONVERT, TDB_CONVERT, - TDB_NOMMAP|TDB_CONVERT }; + TDB_NOMMAP|TDB_CONVERT, + TDB_INTERNAL|TDB_VERSION1, TDB_VERSION1, + TDB_NOMMAP|TDB_VERSION1, + TDB_INTERNAL|TDB_CONVERT|TDB_VERSION1, + TDB_CONVERT|TDB_VERSION1, + TDB_NOMMAP|TDB_CONVERT|TDB_VERSION1 }; - plan_tests(sizeof(flags) / sizeof(flags[0]) * 2 + 1); + failtest_init(argc, argv); + failtest_hook = block_repeat_failures; + failtest_exit_check = exit_check_log; + plan_tests(sizeof(flags) / sizeof(flags[0]) * 3); for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) { tdb = tdb_open("run-new_database.tdb", flags[i], O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr); - ok1(tdb); - if (tdb) { - ok1(tdb_check(tdb, NULL, NULL) == 0); - tdb_close(tdb); - } + if (!ok1(tdb)) + failtest_exit(exit_status()); + + failtest_suppress = true; + ok1(tdb_check(tdb, NULL, NULL) == 0); + failtest_suppress = false; + tdb_close(tdb); + if (!ok1(tap_log_messages == 0)) + break; } - ok1(tap_log_messages == 0); - return exit_status(); + failtest_exit(exit_status()); }