Another fix for pg_regress: Replace exit_nicely() with exit() plus

atexit() hook
This commit is contained in:
Peter Eisentraut 2012-01-02 23:29:16 +02:00
parent bd09111f1f
commit f132824c24

View file

@ -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;