From 7f95ad045a36f1d40f66c815c9461bd5720c5808 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Mon, 5 Dec 2011 17:03:19 +1030 Subject: tdb2: consolidate testing failtest suppression routines. Less cut & paste means less patching as failtest changes. Signed-off-by: Rusty Russell (Imported from CCAN commit 1819a36a3e69565bd7b853503fceb846558a45bd) --- lib/tdb2/test/run-01-new_database.c | 13 +------------ 1 file changed, 1 insertion(+), 12 deletions(-) (limited to 'lib/tdb2/test/run-01-new_database.c') diff --git a/lib/tdb2/test/run-01-new_database.c b/lib/tdb2/test/run-01-new_database.c index 07a9703533..e08e3201e6 100644 --- a/lib/tdb2/test/run-01-new_database.c +++ b/lib/tdb2/test/run-01-new_database.c @@ -5,17 +5,6 @@ #include "logging.h" #include "failtest_helper.h" -static bool failtest_suppress = false; - -/* Don't need to test everything here, just want expand testing. */ -static enum failtest_result -suppress_failure(struct failtest_call *history, unsigned num) -{ - if (failtest_suppress) - return FAIL_DONT_FAIL; - return block_repeat_failures(history, num); -} - int main(int argc, char *argv[]) { unsigned int i; @@ -30,7 +19,7 @@ int main(int argc, char *argv[]) TDB_NOMMAP|TDB_CONVERT|TDB_VERSION1 }; failtest_init(argc, argv); - failtest_hook = suppress_failure; + failtest_hook = block_repeat_failures; failtest_exit_check = exit_check_log; plan_tests(sizeof(flags) / sizeof(flags[0]) * 3); for (i = 0; i < sizeof(flags) / sizeof(flags[0]); i++) { -- cgit