SSL tests: Silence pg_ctl output

Otherwise the pg_ctl start and stop messages get mixed up with the TAP
output, which isn't technically valid.
pull/14/head
Peter Eisentraut 11 years ago
parent 462bd95705
commit ce37eff06d
  1. 4
      src/test/ssl/ServerSetup.pm

@ -90,7 +90,7 @@ sub switch_server_cert
# restart_test_server() because that overrides listen_addresses to only all
# Unix domain socket connections.
system_or_bail 'pg_ctl', 'stop', '-D', "$tempdir/pgdata", '-w';
system_or_bail 'pg_ctl', 'start', '-D', "$tempdir/pgdata", '-w', '-l',
system_or_bail 'pg_ctl', 'stop', '-s', '-D', "$tempdir/pgdata", '-w';
system_or_bail 'pg_ctl', 'start', '-s', '-D', "$tempdir/pgdata", '-w', '-l',
"$tempdir/logfile";
}

Loading…
Cancel
Save