projects
/
ccan
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(from parent 1:
25ed878
)
tap: don't _exit on success
author
Rusty Russell
<rusty@rustcorp.com.au>
Fri, 27 Aug 2010 04:08:58 +0000
(13:38 +0930)
committer
Rusty Russell
<rusty@rustcorp.com.au>
Fri, 27 Aug 2010 04:08:58 +0000
(13:38 +0930)
This prevents us from writing out gcov files.
ccan/tap/test/run.c
patch
|
blob
|
history
diff --git
a/ccan/tap/test/run.c
b/ccan/tap/test/run.c
index c119e74fd4099726a900e741199d38b7e760fb9f..efc8134dcbd273edd34a8269220486ada6dbc278 100644
(file)
--- 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);
}