]> granicus.if.org Git - postgresql/commit
Prevent creation of postmaster's TCP socket during pg_upgrade testing.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 3 Jan 2013 23:34:57 +0000 (18:34 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 3 Jan 2013 23:34:57 +0000 (18:34 -0500)
commit48e0b8a23e3c6e095333a6d489d3f7771d28d383
tree68f1d16309c4087177664c113daf1a41d1c3348e
parentb4c99c9af379157a6224b0a4c01da22192633adf
Prevent creation of postmaster's TCP socket during pg_upgrade testing.

On non-Windows machines, we use the Unix socket for connections to test
postmasters, so there is no need to create a TCP socket.  Furthermore,
doing so causes failures due to port conflicts if two builds are carried
out concurrently on one machine.  (If the builds are done in different
chroots, which is standard practice at least in Red Hat distros, there
is no risk of conflict on the Unix socket.)  Suppressing the TCP socket
by setting listen_addresses to empty has long been standard practice
for pg_regress, and pg_upgrade knows about this too ... but pg_upgrade's
test.sh didn't get the memo.

Back-patch to 9.2, and also sync the 9.2 version of the script with HEAD
as much as practical.
contrib/pg_upgrade/test.sh