projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
598b628
)
Fix unportable test syntax in regression script.
author
Tom Lane
Sat, 23 Jan 1999 21:36:00 +0000
(21:36 +0000)
committer
Tom Lane
Sat, 23 Jan 1999 21:36:00 +0000
(21:36 +0000)
src/test/regress/regress.sh
patch
|
blob
|
blame
|
history
diff --git
a/src/test/regress/regress.sh
b/src/test/regress/regress.sh
index f64de5a858e5e990ff16fcd0c911a7c3b9a43ea5..f09680b7f6fe583442c8407ad92ece445fa6173d 100755
(executable)
--- a/
src/test/regress/regress.sh
+++ b/
src/test/regress/regress.sh
@@
-1,13
+1,13
@@
#!/bin/sh
-# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.2
2 1999/01/17 06:19:58 momjian
Exp $
+# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.2
3 1999/01/23 21:36:00 tgl
Exp $
#
-if [ $# -eq 0 ]
;
+if [ $# -eq 0 ]
then
- echo "Syntax
e
: $0
"
+ echo "Syntax: $0
"
exit 1
fi
-if [ $1 =
= "win" ];
+if [ $1 =
"win" ]
then
HOST="-h localhost"
else