]> git.ozlabs.org Git - ccan/blobdiff - ccan/failtest/test/run-locking.c
failtest: fix open in tests.
[ccan] / ccan / failtest / test / run-locking.c
index b25cfab9a29b36793359cda9c991f772b6a2c22c..13fe0b97b3778d9ccc24df11b739b4f2373cab52 100644 (file)
@@ -10,9 +10,9 @@
 #define SIZE 8
 
 /* We don't want to fork and fail; we're just testing lock recording. */
-static bool dont_fail(struct failtest_call *history, unsigned num)
+static enum failtest_result dont_fail(struct tlist_calls *history)
 {
-       return false;
+       return FAIL_DONT_FAIL;
 }
 
 static bool place_lock(int fd, char lockarr[], unsigned pos, unsigned size,
@@ -95,6 +95,7 @@ int main(void)
        unsigned int isize;
 
        plan_tests(5835);
+       failtest_init(0, NULL);
        failtest_hook = dont_fail;
 
        fd = open("run-locking-scratch", O_RDWR|O_CREAT, 0600);