projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
bd09111
)
Another fix for pg_regress: Replace exit_nicely() with exit() plus
author
Peter Eisentraut
<peter_e@gmx.net>
Mon, 2 Jan 2012 21:29:16 +0000
(23:29 +0200)
committer
Peter Eisentraut
<peter_e@gmx.net>
Mon, 2 Jan 2012 21:29:16 +0000
(23:29 +0200)
atexit() hook
src/test/isolation/isolation_main.c
patch
|
blob
|
blame
|
history
diff --git
a/src/test/isolation/isolation_main.c
b/src/test/isolation/isolation_main.c
index fab0a016d2b1ce304f93c26564ae343b2fb2398d..135bc511a0f0874d4b6f2022eb24fabbe05c0554 100644
(file)
--- a/
src/test/isolation/isolation_main.c
+++ b/
src/test/isolation/isolation_main.c
@@
-69,7
+69,7
@@
isolation_start_test(const char *testname,
{
fprintf(stderr, _("could not start process for test %s\n"),
testname);
- exit
_nicely
(2);
+ exit(2);
}
return pid;