]> git.ozlabs.org Git - ccan/blobdiff - ccan/tdb2/test/run-tdb1-corrupt.c
htable: fix bug where first entry has hash of 0 or 1.
[ccan] / ccan / tdb2 / test / run-tdb1-corrupt.c
index f87afd8a6ab7ff210d6963fc4003d98a55145dfd..35bc4c3f229554938790ea8bb5a14b1d5e160e11 100644 (file)
@@ -45,7 +45,7 @@ static void check_test(struct tdb_context *tdb)
        TDB_DATA key, data;
        unsigned int i, verifiable, corrupt, sizes[2], dsize, ksize;
 
-       ok1(tdb1_check(tdb, NULL, NULL) == 0);
+       ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS);
 
        key.dptr = (void *)"hello";
        data.dsize = strlen("world");
@@ -58,7 +58,7 @@ static void check_test(struct tdb_context *tdb)
        for (key.dsize = 1; key.dsize <= 5; key.dsize++) {
                ksize += key.dsize;
                dsize += data.dsize;
-               if (tdb1_store(tdb, key, data, TDB_INSERT) != 0)
+               if (tdb_store(tdb, key, data, TDB_INSERT) != TDB_SUCCESS)
                        abort();
        }
 
@@ -81,7 +81,7 @@ static void check_test(struct tdb_context *tdb)
        for (i = 0, corrupt = 0; i < tdb->file->map_size * CHAR_BIT; i++) {
                tdb1_flip_bit(tdb, i);
                memset(sizes, 0, sizeof(sizes));
-               if (tdb1_check(tdb, check, sizes) != 0)
+               if (tdb_check(tdb, check, sizes) == TDB_ERR_CORRUPT)
                        corrupt++;
                else if (sizes[0] != ksize || sizes[1] != dsize)
                        corrupt++;