X-Git-Url: http://git.ozlabs.org/?p=ccan;a=blobdiff_plain;f=ccan%2Ffailtest%2Ffailtest.h;h=4df286241d0ef35f8a271251861ae7d0f2c11ac7;hp=473f9e7950fa498e5d56a613353b049e69c82084;hb=b0a59bdcb3356eec66015bcdffd9a3fbaef0489a;hpb=5adceea6af51c93d3b6fc39849ff05340cd87253 diff --git a/ccan/failtest/failtest.h b/ccan/failtest/failtest.h index 473f9e79..4df28624 100644 --- a/ccan/failtest/failtest.h +++ b/ccan/failtest/failtest.h @@ -1,5 +1,6 @@ #ifndef CCAN_FAILTEST_H #define CCAN_FAILTEST_H +#include "config.h" #include #include #include @@ -36,6 +37,7 @@ enum failtest_call_type { FAILTEST_CALLOC, FAILTEST_REALLOC, FAILTEST_OPEN, + FAILTEST_CLOSE, FAILTEST_PIPE, FAILTEST_READ, FAILTEST_WRITE, @@ -66,6 +68,10 @@ struct open_call { mode_t mode; }; +struct close_call { + int fd; +}; + struct pipe_call { int ret; int fds[2]; @@ -130,6 +136,7 @@ struct failtest_call { struct malloc_call malloc; struct realloc_call realloc; struct open_call open; + struct close_call close; struct pipe_call pipe; struct read_call read; struct write_call write; @@ -137,30 +144,42 @@ struct failtest_call { } u; }; +enum failtest_result { + /* Yes try failing this call. */ + FAIL_OK, + /* No, don't try failing this call. */ + FAIL_DONT_FAIL, + /* Try failing this call but don't go too far down that path. */ + FAIL_PROBE, +}; + /** * failtest_hook - whether a certain call should fail or not. * @history: the ordered history of all failtest calls. * @num: the number of elements in @history (greater than 0) * * The default value of this hook is failtest_default_hook(), which returns - * true (ie. yes, fail the call). + * FAIL_OK (ie. yes, fail the call). * * You can override it, and avoid failing certain calls. The parameters * of the call (but not the return value(s)) will be filled in for the last * call. * * Example: - * static bool dont_fail_allocations(struct failtest_call *history, - * unsigned num) + * static enum failtest_result dont_fail_alloc(struct failtest_call *hist, + * unsigned num) * { - * return history[num-1].type != FAILTEST_MALLOC - * && history[num-1].type != FAILTEST_CALLOC - * && history[num-1].type != FAILTEST_REALLOC; + * if (hist[num-1].type == FAILTEST_MALLOC + * || hist[num-1].type == FAILTEST_CALLOC + * || hist[num-1].type == FAILTEST_REALLOC) + * return FAIL_DONT_FAIL; + * return FAIL_OK; * } * ... - * failtest_hook = dont_fail_allocations; + * failtest_hook = dont_fail_alloc; */ -extern bool (*failtest_hook)(struct failtest_call *history, unsigned num); +extern enum failtest_result +(*failtest_hook)(struct failtest_call *history, unsigned num); /** * failtest_exit_check - hook for additional checks on a failed child. @@ -177,9 +196,6 @@ extern bool (*failtest_hook)(struct failtest_call *history, unsigned num); extern bool (*failtest_exit_check)(struct failtest_call *history, unsigned num); -/* This usually fails the call. */ -bool failtest_default_hook(struct failtest_call *history, unsigned num); - /** * failtest_timeout_ms - how long to wait before killing child. *