]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb/test/run-endian.c
tests: now we run in tmp dir, always create temporary files in this dir.
[ccan] / ccan / tdb / test / run-endian.c
index 6583c53ce0b06c778e7889cab831281a410d3d82..9ee877dde5090a1bf3a1e550f75fb5cf0f9bacf8 100644 (file)
@@ -8,6 +8,7 @@
 #include <ccan/tdb/transaction.c>
 #include <ccan/tdb/error.c>
 #include <ccan/tdb/open.c>
+#include <ccan/tdb/check.c>
 #include <ccan/tap/tap.h>
 #include <stdlib.h>
 #include <err.h>
@@ -18,7 +19,7 @@ int main(int argc, char *argv[])
        TDB_DATA key, data;
 
        plan_tests(13);
-       tdb = tdb_open("/tmp/test.tdb", 1024, TDB_CLEAR_IF_FIRST|TDB_CONVERT,
+       tdb = tdb_open("run-endian.tdb", 1024, TDB_CLEAR_IF_FIRST|TDB_CONVERT,
                       O_CREAT|O_TRUNC|O_RDWR, 0600);
 
        ok1(tdb);
@@ -45,7 +46,7 @@ int main(int argc, char *argv[])
        tdb_close(tdb);
 
        /* Reopen: should read it */
-       tdb = tdb_open("/tmp/test.tdb", 1024, 0, O_RDWR, 0);
+       tdb = tdb_open("run-endian.tdb", 1024, 0, O_RDWR, 0);
        ok1(tdb);
        
        key.dsize = strlen("hi");