X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb%2Ftest%2Frun-check.c;h=fe0842d3d0aa62f260e93ee307b21412b4d72eb6;hp=1518b4b4b9c320ba818117b3f77ce1adad654b86;hb=cbe5094e85d08d19393c1b66abd59aecce7c8408;hpb=6f05c2b8ad782f7f602bddad8b72b42c55c32bf9 diff --git a/ccan/tdb/test/run-check.c b/ccan/tdb/test/run-check.c index 1518b4b4..fe0842d3 100644 --- a/ccan/tdb/test/run-check.c +++ b/ccan/tdb/test/run-check.c @@ -1,17 +1,18 @@ #define _XOPEN_SOURCE 500 -#include "tdb/tdb.h" -#include "tdb/io.c" -#include "tdb/tdb.c" -#include "tdb/lock.c" -#include "tdb/freelist.c" -#include "tdb/traverse.c" -#include "tdb/transaction.c" -#include "tdb/error.c" -#include "tdb/open.c" -#include "tdb/check.c" -#include "tap/tap.h" +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include +#include #include #include +#include "logging.h" int main(int argc, char *argv[]) { @@ -19,8 +20,8 @@ int main(int argc, char *argv[]) TDB_DATA key, data; plan_tests(9); - tdb = tdb_open("/tmp/test5.tdb", 1, TDB_CLEAR_IF_FIRST, - O_CREAT|O_TRUNC|O_RDWR, 0600); + tdb = tdb_open_ex("run-check.tdb", 1, TDB_CLEAR_IF_FIRST, + O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL); ok1(tdb); ok1(tdb_check(tdb, NULL, NULL) == 0); @@ -34,12 +35,14 @@ int main(int argc, char *argv[]) ok1(tdb_check(tdb, NULL, NULL) == 0); tdb_close(tdb); - tdb = tdb_open("/tmp/test5.tdb", 1024, 0, O_RDWR, 0); + tdb = tdb_open_ex("run-check.tdb", 1024, 0, O_RDWR, 0, + &taplogctx, NULL); ok1(tdb); ok1(tdb_check(tdb, NULL, NULL) == 0); tdb_close(tdb); - tdb = tdb_open("test/tdb.corrupt", 1024, 0, O_RDWR, 0); + tdb = tdb_open_ex("test/tdb.corrupt", 1024, 0, O_RDWR, 0, + &taplogctx, NULL); ok1(tdb); ok1(tdb_check(tdb, NULL, NULL) == -1); ok1(tdb_error(tdb) == TDB_ERR_CORRUPT);