]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-tdb1-oldhash.c
tdb2: unify tdb1_check and tdb1_summary into tdb_check and tdb_summary.
[ccan] / ccan / tdb2 / test / run-tdb1-oldhash.c
index 185001db74b41876d1782a907aa04ca50c153450..f9cffa25a67e9aa41948d3e82789efa83bd5b00c 100644 (file)
@@ -20,25 +20,25 @@ int main(int argc, char *argv[])
        tdb = tdb_open("test/old-nohash-le.tdb1", TDB_VERSION1, O_RDWR, 0,
                       &tap_log_attr);
        ok1(tdb);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        tdb = tdb_open("test/old-nohash-be.tdb1", TDB_VERSION1, O_RDWR, 0,
                       &tap_log_attr);
        ok1(tdb);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        tdb = tdb_open("test/old-nohash-le.tdb1", TDB_VERSION1, O_RDWR, 0,
                       &incompat_hash_attr);
        ok1(tdb);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        tdb = tdb_open("test/old-nohash-be.tdb1", TDB_VERSION1, O_RDWR, 0,
                       &incompat_hash_attr);
        ok1(tdb);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        return exit_status();