|
1 | 1 | #!/bin/sh
|
2 | 2 | #
|
3 |
| -# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.12 2000/04/07 17:51:13 tgl Exp $ |
| 3 | +# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.13 2000/04/08 01:54:47 tgl Exp $ |
4 | 4 |
|
5 | 5 | # ----------
|
6 | 6 | # Check call syntax
|
@@ -29,6 +29,7 @@ TIMDIR="$CHKDIR/timestamp"
|
29 | 29 | PGPORT="65432"
|
30 | 30 | PGLIB="$LIBDIR"
|
31 | 31 | PMPID=""
|
| 32 | +PMOPTIONS=${PMOPTIONS:-"-o -F"} |
32 | 33 |
|
33 | 34 | export CHKDIR
|
34 | 35 | export PGDATA
|
|
191 | 192 | # him some time to pass the WAL recovery code.
|
192 | 193 | #----------
|
193 | 194 | echo"=============== Starting regression postmaster ================"
|
194 |
| -postmaster -D$PGDATA -p$PGPORT-o -F>$LOGDIR/postmaster.log2>&1& |
| 195 | +postmaster -D$PGDATA -p$PGPORT$PMOPTIONS>$LOGDIR/postmaster.log2>&1& |
195 | 196 | PMPID=$!
|
196 | 197 | sleep 2
|
197 | 198 |
|
|