]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb/test/run-nested-transactions.c
strsplit: remove nump argument
[ccan] / ccan / tdb / test / run-nested-transactions.c
index fd28895527d6e9d5e159b4f826d4fc3b4413603e..d13977ca8ae7bc1addb7a439aa575f6a95c9274b 100644 (file)
@@ -9,10 +9,13 @@
 #include <ccan/tdb/error.c>
 #include <ccan/tdb/open.c>
 #include <ccan/tdb/check.c>
 #include <ccan/tdb/error.c>
 #include <ccan/tdb/open.c>
 #include <ccan/tdb/check.c>
+#include <ccan/tdb/hash.c>
 #include <ccan/tap/tap.h>
 #include <stdlib.h>
 #include <stdbool.h>
 #include <err.h>
 #include <ccan/tap/tap.h>
 #include <stdlib.h>
 #include <stdbool.h>
 #include <err.h>
+#include "logging.h"
+
 int main(int argc, char *argv[])
 {
        struct tdb_context *tdb;
 int main(int argc, char *argv[])
 {
        struct tdb_context *tdb;
@@ -22,8 +25,9 @@ int main(int argc, char *argv[])
        key.dsize = strlen("hi");
        key.dptr = (void *)"hi";
 
        key.dsize = strlen("hi");
        key.dptr = (void *)"hi";
 
-       tdb = tdb_open("/tmp/test4.tdb", 1024, TDB_CLEAR_IF_FIRST,
-                      O_CREAT|O_TRUNC|O_RDWR, 0600);
+       tdb = tdb_open_ex("run-nested-transactions.tdb",
+                         1024, TDB_CLEAR_IF_FIRST,
+                         O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL);
        ok1(tdb);
 
        /* No nesting by default. */
        ok1(tdb);
 
        /* No nesting by default. */
@@ -49,7 +53,8 @@ int main(int argc, char *argv[])
        free(data.dptr);
        tdb_close(tdb);
 
        free(data.dptr);
        tdb_close(tdb);
 
-       tdb = tdb_open("/tmp/test4.tdb", 1024, TDB_ALLOW_NESTING, O_RDWR, 0);
+       tdb = tdb_open_ex("run-nested-transactions.tdb",
+                         1024, TDB_ALLOW_NESTING, O_RDWR, 0, &taplogctx, NULL);
        ok1(tdb);
 
        ok1(tdb_transaction_start(tdb) == 0);
        ok1(tdb);
 
        ok1(tdb_transaction_start(tdb) == 0);