diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2012-01-02 23:29:16 +0200 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2012-01-02 23:29:16 +0200 |
commit | f132824c24c46d2efab49b4cddd1088781bf499e (patch) | |
tree | a1ec757ef0ac3742865968eafd57aacebef856fb | |
parent | bd09111f1f52e3739a24b88a4671f7a4b0ed4c1d (diff) | |
download | postgresql-f132824c24c46d2efab49b4cddd1088781bf499e.tar.gz postgresql-f132824c24c46d2efab49b4cddd1088781bf499e.zip |
Another fix for pg_regress: Replace exit_nicely() with exit() plus
atexit() hook
-rw-r--r-- | src/test/isolation/isolation_main.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/isolation/isolation_main.c b/src/test/isolation/isolation_main.c index fab0a016d2b..135bc511a0f 100644 --- 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; |