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

atexit() hook
pull/1/head
Peter Eisentraut 14 years ago
parent bd09111f1f
commit f132824c24
  1. 2
      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;

Loading…
Cancel
Save