]> git.ozlabs.org Git - ccan/commitdiff
failtest: fix open in tests.
authorRusty Russell <rusty@rustcorp.com.au>
Tue, 29 Nov 2011 22:47:11 +0000 (09:17 +1030)
committerRusty Russell <rusty@rustcorp.com.au>
Tue, 29 Nov 2011 22:47:11 +0000 (09:17 +1030)
The argument is wrong, so the return was -1.  That currently works,
but it will beak with the next patch.  Fix the typo.

ccan/failtest/test/run-history.c

index 24dc1169046945f0110be6c70710f518a83cd911..88068b55eacdcec025fc6b21a1a9aa12fbfb343e 100644 (file)
@@ -54,8 +54,8 @@ int main(void)
        ok1(call->u.realloc.ptr == realloc_call.ptr);
        ok1(call->u.realloc.size == realloc_call.size);
 
        ok1(call->u.realloc.ptr == realloc_call.ptr);
        ok1(call->u.realloc.size == realloc_call.size);
 
-       open_call.ret = open("test/run_history.c", O_RDONLY);
-       open_call.pathname = "test/run_history.c";
+       open_call.ret = open("test/run-history.c", O_RDONLY);
+       open_call.pathname = "test/run-history.c";
        open_call.flags = O_RDONLY;
        open_call.mode = 0;
        call = add_history(FAILTEST_OPEN, "run-history.c", 4, &open_call);
        open_call.flags = O_RDONLY;
        open_call.mode = 0;
        call = add_history(FAILTEST_OPEN, "run-history.c", 4, &open_call);