From: Rusty Russell Date: Fri, 27 Aug 2010 04:08:58 +0000 (+0930) Subject: tap: don't _exit on success X-Git-Url: http://git.ozlabs.org/?p=ccan;a=commitdiff_plain;h=458831cf788f21f8588bad7d7490f729361fc136 tap: don't _exit on success This prevents us from writing out gcov files. --- diff --git a/ccan/tap/test/run.c b/ccan/tap/test/run.c index c119e74f..efc8134d 100644 --- a/ccan/tap/test/run.c +++ b/ccan/tap/test/run.c @@ -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); }