]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-tdb1-wronghash-fail.c
ttxml: removed cruft from tests
[ccan] / ccan / tdb2 / test / run-tdb1-wronghash-fail.c
index c7e789f2ca7a02f6dec0a87fdc3632fc315ba84d..63c1bdf1e46b637ded5ee05bb2fc5742d01ea79f 100644 (file)
@@ -102,7 +102,7 @@ int main(int argc, char *argv[])
                       0, &incompat_hash_attr);
        ok1(tdb);
        ok1(log_count == 0);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        log_count = 0;
@@ -110,7 +110,7 @@ int main(int argc, char *argv[])
                       0, &incompat_hash_attr);
        ok1(tdb);
        ok1(log_count == 0);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        /* It should open with jenkins hash if we don't specify. */
@@ -119,7 +119,7 @@ int main(int argc, char *argv[])
                       &log_attr);
        ok1(tdb);
        ok1(log_count == 0);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        log_count = 0;
@@ -127,7 +127,7 @@ int main(int argc, char *argv[])
                       &log_attr);
        ok1(tdb);
        ok1(log_count == 0);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);
 
        log_count = 0;
@@ -135,7 +135,7 @@ int main(int argc, char *argv[])
                       0, &log_attr);
        ok1(tdb);
        ok1(log_count == 0);
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
        tdb_close(tdb);