X-Git-Url: https://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb2%2Ftest%2Frun-tdb1-readonly-check.c;h=f42a8f5e27464d2870fc0d385e38c66e9399d470;hp=9bc9a93a7f5b4047024b4fe388f0572d114137c1;hb=fbae37ba91ec230e34be564084099726cc3a9d47;hpb=c8c3b3568677e8b0105f84e4ab068c580faf4591 diff --git a/ccan/tdb2/test/run-tdb1-readonly-check.c b/ccan/tdb2/test/run-tdb1-readonly-check.c index 9bc9a93a..f42a8f5e 100644 --- a/ccan/tdb2/test/run-tdb1-readonly-check.c +++ b/ccan/tdb2/test/run-tdb1-readonly-check.c @@ -1,5 +1,5 @@ -/* We should be able to tdb1_check a O_RDONLY tdb, and we were previously allowed - * to tdb1_check() inside a transaction (though that's paranoia!). */ +/* We should be able to tdb_check a O_RDONLY tdb, and we were previously allowed + * to tdb_check() inside a transaction (though that's paranoia!). */ #include "tdb2-source.h" #include #include @@ -16,7 +16,7 @@ int main(int argc, char *argv[]) hsize.base.next = &tap_log_attr; hsize.tdb1_hashsize.hsize = 1024; - plan_tests(11); + plan_tests(10); tdb = tdb_open("run-readonly-check.tdb1", TDB_VERSION1, O_CREAT|O_TRUNC|O_RDWR, 0600, &hsize); @@ -27,21 +27,20 @@ int main(int argc, char *argv[]) data.dsize = strlen("world"); data.dptr = (void *)"world"; - ok1(tdb1_store(tdb, key, data, TDB_INSERT) == 0); - ok1(tdb1_check(tdb, NULL, NULL) == 0); + ok1(tdb_store(tdb, key, data, TDB_INSERT) == TDB_SUCCESS); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); /* We are also allowed to do a check inside a transaction. */ - ok1(tdb1_transaction_start(tdb) == 0); - ok1(tdb1_check(tdb, NULL, NULL) == 0); + ok1(tdb_transaction_start(tdb) == TDB_SUCCESS); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); ok1(tdb_close(tdb) == 0); tdb = tdb_open("run-readonly-check.tdb1", TDB_DEFAULT, O_RDONLY, 0, &tap_log_attr); ok1(tdb); - ok1(tdb1_store(tdb, key, data, TDB_MODIFY) == -1); - ok1(tdb_error(tdb) == TDB_ERR_RDONLY); - ok1(tdb1_check(tdb, NULL, NULL) == 0); + ok1(tdb_store(tdb, key, data, TDB_MODIFY) == TDB_ERR_RDONLY); + ok1(tdb_check(tdb, NULL, NULL) == TDB_SUCCESS); ok1(tdb_close(tdb) == 0); return exit_status();