From c3f3cad9eb58b84a944e501aaede818d4225d057 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Wed, 14 Sep 2011 08:13:26 +0930 Subject: tdb2: speed up testing. The time to run tests under valgrind has become excessive; particularly the failure tests which fork(). Thus we cut down testing: 1) api-94-repack: reduce from 234 seconds to 2 seconds by cutting iterations, despite adding TDB_VERSION1 tests. 2) api-missing-entries: reduce from 17 seconds to under 1 second by not checking db inside loop, but at end. This reduces the total ccanlint time from 729 to 489 seconds. Signed-off-by: Rusty Russell (Imported from CCAN commit a99c2ccf97465d47c3277d997ea93f20ff97ad4d) --- lib/tdb2/test/api-93-repack.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) (limited to 'lib/tdb2/test/api-93-repack.c') diff --git a/lib/tdb2/test/api-93-repack.c b/lib/tdb2/test/api-93-repack.c index 0a2e6d5b82..74a8b5eda2 100644 --- a/lib/tdb2/test/api-93-repack.c +++ b/lib/tdb2/test/api-93-repack.c @@ -5,7 +5,7 @@ #include #include "logging.h" -#define NUM_TESTS 50000 +#define NUM_TESTS 1000 static bool store_all(struct tdb_context *tdb) { @@ -53,6 +53,9 @@ int main(int argc, char *argv[]) struct tdb_context *tdb; int flags[] = { TDB_DEFAULT, TDB_NOMMAP, TDB_CONVERT, TDB_NOMMAP|TDB_CONVERT, + TDB_VERSION1, TDB_VERSION1|TDB_NOMMAP, + TDB_VERSION1|TDB_CONVERT, + TDB_VERSION1|TDB_NOMMAP|TDB_CONVERT }; plan_tests(sizeof(flags) / sizeof(flags[0]) * 6 + 1); -- cgit