]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-20-growhash.c
tdb2: feature support.
[ccan] / ccan / tdb2 / test / run-20-growhash.c
index 6bcfd7d3baee007dbb29633068ef0c6010160113..160f37deb02f63a2e5db8f9d55984bbb77604e91 100644 (file)
@@ -3,6 +3,7 @@
 #include <ccan/tdb2/lock.c>
 #include <ccan/tdb2/io.c>
 #include <ccan/tdb2/hash.c>
+#include <ccan/tdb2/transaction.c>
 #include <ccan/tdb2/check.c>
 #include <ccan/tap/tap.h>
 #include "logging.h"
@@ -76,7 +77,7 @@ int main(int argc, char *argv[])
 
                /* Check first still exists. */
                kdata = make_key(0, 0, 0, 0, 0, 0);
-               ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec) != 0);
+               ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL) != 0);
                /* Should have created correct hash. */
                ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize));
                /* Should have located space in group 0, bucket 0. */
@@ -98,7 +99,7 @@ int main(int argc, char *argv[])
                        ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0);
                        ok1(tdb_check(tdb, NULL, NULL) == 0);
 
-                       ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec) != 0);
+                       ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL));
                        /* Should have created correct hash. */
                        ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize));
                        /* Should have moved to subhash */
@@ -122,7 +123,7 @@ int main(int argc, char *argv[])
                        ok1(tdb_store(tdb, key, dbuf, TDB_INSERT) == 0);
                        ok1(tdb_check(tdb, NULL, NULL) == 0);
 
-                       ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec) != 0);
+                       ok1(find_and_lock(tdb, key, F_RDLCK, &h, &rec, NULL));
                        /* Should have created correct hash. */
                        ok1(h.h == tdb_hash(tdb, key.dptr, key.dsize));
                        /* Should have moved to subhash */