|
1 | 1 | #!/bin/sh |
2 | 2 | # |
3 | | -# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.16 2000/05/18 15:37:56 momjian Exp $ |
| 3 | +# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.17 2000/05/18 15:58:43 momjian Exp $ |
4 | 4 |
|
5 | 5 | # ---------- |
6 | 6 | # Check call syntax |
@@ -62,8 +62,10 @@ extratests="$*" |
62 | 62 | if ["x$hostname"="xwin"-o"x$hostname"="xi386-pc-qnx" ] |
63 | 63 | then |
64 | 64 | HOSTLOC="-h localhost" |
| 65 | + USETCPIP="-i" |
65 | 66 | else |
66 | 67 | HOSTLOC="" |
| 68 | + USETCPIP="" |
67 | 69 | fi |
68 | 70 |
|
69 | 71 | # ---------- |
|
192 | 194 | # him some time to pass the WAL recovery code. |
193 | 195 | #---------- |
194 | 196 | echo"=============== Starting regression postmaster ================" |
195 | | -postmaster -D$PGDATA-i -p$PGPORT$PMOPTIONS>$LOGDIR/postmaster.log2>&1& |
| 197 | +postmaster -D$PGDATA$USETCPIP -p$PGPORT$PMOPTIONS>$LOGDIR/postmaster.log2>&1& |
196 | 198 | PMPID=$! |
197 | 199 | sleep 2 |
198 | 200 |
|
|