1 #include <ccan/tdb2/tdb.c>
2 #include <ccan/tdb2/free.c>
3 #include <ccan/tdb2/lock.c>
4 #include <ccan/tdb2/io.c>
5 #include <ccan/tdb2/check.c>
6 #include <ccan/tap/tap.h>
9 int main(int argc, char *argv[])
12 struct tdb_context *tdb;
13 int flags[] = { TDB_INTERNAL, TDB_DEFAULT,
14 TDB_INTERNAL|TDB_CONVERT, TDB_CONVERT };
16 plan_tests(sizeof(flags) / sizeof(flags[0]) * 2 + 1);
17 for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) {
18 tdb = tdb_open("run-new_database", flags[i],
19 O_RDWR|O_CREAT|O_TRUNC, 0600, &tap_log_attr);
22 ok1(tdb_check(tdb, NULL, NULL) == 0);
26 ok1(tap_log_messages == 0);