]> git.ozlabs.org Git - ccan/blob - ccan/tdb2/test/run-01-new_database.c
tdb2: test: Speed up run-01-new_database.
[ccan] / ccan / tdb2 / test / run-01-new_database.c
1 #include <ccan/failtest/failtest_override.h>
2 #include "tdb2-source.h"
3 #include <ccan/tap/tap.h>
4 #include <ccan/failtest/failtest.h>
5 #include "logging.h"
6 #include "failtest_helper.h"
7
8 static bool failtest_suppress = false;
9
10 /* Don't need to test everything here, just want expand testing. */
11 static enum failtest_result
12 suppress_failure(struct failtest_call *history, unsigned num)
13 {
14         if (failtest_suppress)
15                 return FAIL_DONT_FAIL;
16         return block_repeat_failures(history, num);
17 }
18
19 int main(int argc, char *argv[])
20 {
21         unsigned int i;
22         struct tdb_context *tdb;
23         int flags[] = { TDB_INTERNAL, TDB_DEFAULT, TDB_NOMMAP,
24                         TDB_INTERNAL|TDB_CONVERT, TDB_CONVERT, 
25                         TDB_NOMMAP|TDB_CONVERT,
26                         TDB_INTERNAL|TDB_VERSION1, TDB_VERSION1,
27                         TDB_NOMMAP|TDB_VERSION1,
28                         TDB_INTERNAL|TDB_CONVERT|TDB_VERSION1,
29                         TDB_CONVERT|TDB_VERSION1,
30                         TDB_NOMMAP|TDB_CONVERT|TDB_VERSION1 };
31
32         failtest_init(argc, argv);
33         failtest_hook = suppress_failure;
34         failtest_exit_check = exit_check_log;
35         plan_tests(sizeof(flags) / sizeof(flags[0]) * 3);
36         for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
37                 tdb = tdb_open("run-new_database.tdb", flags[i],
38                                O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
39                 if (!ok1(tdb))
40                         failtest_exit(exit_status());
41
42                 failtest_suppress = true;
43                 ok1(tdb_check(tdb, NULL, NULL) == 0);
44                 failtest_suppress = false;
45                 tdb_close(tdb);
46                 if (!ok1(tap_log_messages == 0))
47                         break;
48         }
49         failtest_exit(exit_status());
50 }