]> git.ozlabs.org Git - ccan/blobdiff - ccan/failtest/_info
antithread, failtest: use ccan/err instead of err.h.
[ccan] / ccan / failtest / _info
index 830fce49072c449fc29a177b6be85903e03efe3f..ca2b60ea37c40931a5262945470b4764ffa465ef 100644 (file)
@@ -27,7 +27,7 @@
  *
  *     int main(int argc, char *argv[])
  *     {
- *             void *a, *b;
+ *             char *a, *b;
  *
  *             failtest_init(argc, argv);
  *             plan_tests(3);
@@ -54,6 +54,9 @@
  *
  * License: LGPL
  * Author: Rusty Russell <rusty@rustcorp.com.au>
+ * Ccanlint:
+ *     // valgrind seems to mess up rlimit.
+ *     tests_pass_valgrind test/run-with-fdlimit.c:FAIL
  */
 int main(int argc, char *argv[])
 {
@@ -61,9 +64,15 @@ int main(int argc, char *argv[])
                return 1;
 
        if (strcmp(argv[1], "depends") == 0) {
+               printf("ccan/build_assert\n");
                printf("ccan/compiler\n");
+               printf("ccan/err\n");
+               printf("ccan/hash\n");
+               printf("ccan/htable\n");
                printf("ccan/read_write_all\n");
-               printf("ccan/build_assert\n");
+               printf("ccan/str\n");
+               printf("ccan/time\n");
+               printf("ccan/tlist\n");
                return 0;
        }