Browse Source

tap: don't _exit on success

This prevents us from writing out gcov files.
Rusty Russell 15 years ago
parent
commit
458831cf78
1 changed files with 1 additions and 1 deletions
  1. 1 1
      ccan/tap/test/run.c

+ 1 - 1
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);
 }