From 458831cf788f21f8588bad7d7490f729361fc136 Mon Sep 17 00:00:00 2001 From: Rusty Russell Date: Fri, 27 Aug 2010 13:38:58 +0930 Subject: [PATCH] tap: don't _exit on success This prevents us from writing out gcov files. --- ccan/tap/test/run.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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); } -- 2.39.2