Fix unportable test syntax in regression script.

This commit is contained in:
Tom Lane 1999-01-23 21:36:00 +00:00
parent 598b628b27
commit 13c7c183f7

View File

@ -1,13 +1,13 @@
#!/bin/sh #!/bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.22 1999/01/17 06:19:58 momjian Exp $ # $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.23 1999/01/23 21:36:00 tgl Exp $
# #
if [ $# -eq 0 ]; if [ $# -eq 0 ]
then then
echo "Syntaxe: $0 <portname>" echo "Syntax: $0 <portname>"
exit 1 exit 1
fi fi
if [ $1 == "win" ]; if [ $1 = "win" ]
then then
HOST="-h localhost" HOST="-h localhost"
else else