Commit c6c77939 authored by Rusty Russell's avatar Rusty Russell

ccanlint: don't collect results from test children

This confuses the output, and makes us sometimes see spurious
failure.  At least we will still catch valgrind errors in
children of failtest, thanks to --error-exitcode=101.
parent 1b2efd56
...@@ -112,6 +112,7 @@ static void do_run_tests_vg(struct manifest *m, ...@@ -112,6 +112,7 @@ static void do_run_tests_vg(struct manifest *m,
* humans, and you can't have both. */ * humans, and you can't have both. */
run_command(score, timeleft, &cmdout, run_command(score, timeleft, &cmdout,
"valgrind -q --error-exitcode=101" "valgrind -q --error-exitcode=101"
" --child-silent-after-fork=yes"
" --leak-check=full" " --leak-check=full"
" --log-fd=3 %s %s" " --log-fd=3 %s %s"
" 3> valgrind.log", " 3> valgrind.log",
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment