]> git.ozlabs.org Git - ccan/blobdiff - ccan/failtest/failtest.h
failtest: failtest_has_failed()
[ccan] / ccan / failtest / failtest.h
index 4df286241d0ef35f8a271251861ae7d0f2c11ac7..d4d9987b5e38e545244eebc18e0103a053149c8f 100644 (file)
@@ -196,6 +196,16 @@ extern enum failtest_result
 extern bool (*failtest_exit_check)(struct failtest_call *history,
                                   unsigned num);
 
+/**
+ * failtest_has_failed - determine if a failure has occurred.
+ *
+ * Sometimes you want to exit immediately if you've experienced a failure.
+ * This is useful when you have four separate tests in your test suite,
+ * and you don't want to do the next one if you've had a failure in a
+ * previous one.
+ */
+extern bool failtest_has_failed(void);
+
 /**
  * failtest_timeout_ms - how long to wait before killing child.
  *