1
0
mirror of https://github.com/postgres/postgres.git synced 2025-06-11 20:28:21 +03:00

Treat MINGW and MSYS the same in pg_upgrade test script

On msys2, 'uname -s' reports a string starting MSYS instead on MINGW
as happens on msys1. Treat these both the same way. This reverts
608a710195 in favor of a more general solution.

Backpatch to all live branches.
This commit is contained in:
Andrew Dunstan
2019-08-26 07:44:34 -04:00
parent c693c5c490
commit a5364a3df5

View File

@ -29,11 +29,13 @@ standard_initdb() {
../../src/test/regress/pg_regress --config-auth "$PGDATA"
}
# Establish how the server will listen for connections
testhost=`uname -s`
# What flavor of host are we on?
# Treat MINGW* (msys1) and MSYS* (msys2) the same.
testhost=`uname -s | sed s/^MSYS/MINGW/`
# Establish how the server will listen for connections
case $testhost in
MINGW*|MSYS*)
MINGW*)
LISTEN_ADDRESSES="localhost"
PGHOST=localhost
;;