summaryrefslogtreecommitdiff
path: root/lib/tdb2/test/failtest_helper.c
diff options
context:
space:
mode:
authorRusty Russell <rusty@rustcorp.com.au>2011-12-05 17:03:19 +1030
committerRusty Russell <rusty@rustcorp.com.au>2011-12-05 17:03:19 +1030
commit7f95ad045a36f1d40f66c815c9461bd5720c5808 (patch)
treec07bd21df5f33a5143bcbe0a3288b7b0f1cfb435 /lib/tdb2/test/failtest_helper.c
parentd5524222a42a9dd92f9ea25ced4b70d2a8da1b23 (diff)
downloadsamba-7f95ad045a36f1d40f66c815c9461bd5720c5808.tar.gz
samba-7f95ad045a36f1d40f66c815c9461bd5720c5808.tar.bz2
samba-7f95ad045a36f1d40f66c815c9461bd5720c5808.zip
tdb2: consolidate testing failtest suppression routines.
Less cut & paste means less patching as failtest changes. Signed-off-by: Rusty Russell <rusty@rustcorp.com.au> (Imported from CCAN commit 1819a36a3e69565bd7b853503fceb846558a45bd)
Diffstat (limited to 'lib/tdb2/test/failtest_helper.c')
-rw-r--r--lib/tdb2/test/failtest_helper.c5
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/tdb2/test/failtest_helper.c b/lib/tdb2/test/failtest_helper.c
index 1358a6c6b2..d24ac4c42b 100644
--- a/lib/tdb2/test/failtest_helper.c
+++ b/lib/tdb2/test/failtest_helper.c
@@ -3,6 +3,8 @@
#include <string.h>
#include <ccan/tap/tap.h>
+bool failtest_suppress = false;
+
/* FIXME: From ccan/str */
static inline bool strends(const char *str, const char *postfix)
{
@@ -84,6 +86,9 @@ block_repeat_failures(struct failtest_call *history, unsigned num)
{
const struct failtest_call *i, *last = &history[num-1];
+ if (failtest_suppress)
+ return FAIL_DONT_FAIL;
+
if (failmatch(last, INITIAL_TDB_MALLOC)
|| failmatch(last, URANDOM_OPEN)
|| failmatch(last, URANDOM_READ)) {