diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2000-04-07 17:51:13 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2000-04-07 17:51:13 +0000 |
commit | 8dce89487052ebdf73a811287b555f904be82ebb (patch) | |
tree | c1e2e6a896f365cfb476755163cad8453745a35c /src | |
parent | 0df916e0967ee39eeb82e7a6330f65eb7cf3c3be (diff) | |
download | postgresql-8dce89487052ebdf73a811287b555f904be82ebb.tar.gz postgresql-8dce89487052ebdf73a811287b555f904be82ebb.zip |
Use initdb --noclean so that test database is available for examination
if initdb fails.
Diffstat (limited to 'src')
-rwxr-xr-x | src/test/regress/run_check.sh | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regress/run_check.sh b/src/test/regress/run_check.sh index 68c524bb9ab..b2b94dedf98 100755 --- a/src/test/regress/run_check.sh +++ b/src/test/regress/run_check.sh @@ -1,6 +1,6 @@ #!/bin/sh # -# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.11 2000/03/01 21:10:05 petere Exp $ +# $Header: /cvsroot/pgsql/src/test/regress/Attic/run_check.sh,v 1.12 2000/04/07 17:51:13 tgl Exp $ # ---------- # Check call syntax @@ -173,7 +173,7 @@ export PATH # Run initdb to initialize a database system in ./tmp_check # ---------- echo "=============== Initializing check database instance ================" -initdb -L $LIBDIR -D $PGDATA >$LOGDIR/initdb.log 2>&1 +initdb -L $LIBDIR -D $PGDATA --noclean >$LOGDIR/initdb.log 2>&1 if [ $? -ne 0 ] then |