Commit a669bd74 authored by Thomas G. Lockhart's avatar Thomas G. Lockhart

Check for existence of the results directory before invoking mkdir.

parent 17d63245
#!/bin/sh #!/bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.55 2000/10/07 14:55:16 momjian Exp $ # $Header: /cvsroot/pgsql/src/test/regress/Attic/regress.sh,v 1.56 2000/11/11 19:56:20 thomas Exp $
# #
if [ $# -eq 0 ]; then if [ $# -eq 0 ]; then
echo "Syntax: $0 <hostname> [extra-tests]" echo "Syntax: $0 <hostname> [extra-tests]"
...@@ -66,7 +66,7 @@ if [ -d ./obj ]; then ...@@ -66,7 +66,7 @@ if [ -d ./obj ]; then
cd ./obj cd ./obj
fi fi
mkdir results [ -d results ] || mkdir results
echo "=============== Notes... =================" echo "=============== Notes... ================="
echo "postmaster must already be running for the regression tests to succeed." echo "postmaster must already be running for the regression tests to succeed."
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment