From: Peter Eisentraut Date: Mon, 2 Jan 2012 21:29:16 +0000 (+0200) Subject: Another fix for pg_regress: Replace exit_nicely() with exit() plus X-Git-Tag: REL9_2_BETA1~626 X-Git-Url: http://git.postgresql.org/gitweb/?a=commitdiff_plain;h=f132824c24c46d2efab49b4cddd1088781bf499e;p=postgresql.git Another fix for pg_regress: Replace exit_nicely() with exit() plus atexit() hook --- 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;