X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ftdb%2Ftest%2Frun-check.c;h=f96647b9d4e982732d8379beacb6c70668fdc78c;hp=fe0842d3d0aa62f260e93ee307b21412b4d72eb6;hb=cc2d609dfca7192305ad477b8c2b52cfdc1aa9be;hpb=cbe5094e85d08d19393c1b66abd59aecce7c8408 diff --git a/ccan/tdb/test/run-check.c b/ccan/tdb/test/run-check.c index fe0842d3..f96647b9 100644 --- a/ccan/tdb/test/run-check.c +++ b/ccan/tdb/test/run-check.c @@ -9,6 +9,7 @@ #include #include #include +#include #include #include #include @@ -19,7 +20,7 @@ int main(int argc, char *argv[]) struct tdb_context *tdb; TDB_DATA key, data; - plan_tests(9); + plan_tests(13); tdb = tdb_open_ex("run-check.tdb", 1, TDB_CLEAR_IF_FIRST, O_CREAT|O_TRUNC|O_RDWR, 0600, &taplogctx, NULL); @@ -48,5 +49,18 @@ int main(int argc, char *argv[]) ok1(tdb_error(tdb) == TDB_ERR_CORRUPT); tdb_close(tdb); + /* Big and little endian should work! */ + tdb = tdb_open_ex("test/old-nohash-le.tdb", 1024, 0, O_RDWR, 0, + &taplogctx, NULL); + ok1(tdb); + ok1(tdb_check(tdb, NULL, NULL) == 0); + tdb_close(tdb); + + tdb = tdb_open_ex("test/old-nohash-be.tdb", 1024, 0, O_RDWR, 0, + &taplogctx, NULL); + ok1(tdb); + ok1(tdb_check(tdb, NULL, NULL) == 0); + tdb_close(tdb); + return exit_status(); }