Commit 458831cf authored by Rusty Russell's avatar Rusty Russell

tap: don't _exit on success

This prevents us from writing out gcov files.
parent 25ed8785
......@@ -129,5 +129,5 @@ int main(int argc, char *argv[])
write_all(stdoutfd, "ok 1 - All passed\n",
strlen("ok 1 - All passed\n"));
_exit(0);
exit(0);
}
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