1
0
mirror of https://github.com/postgres/postgres.git synced 2025-05-11 05:41:32 +03:00

Allow running without a "schedule" file. This enables you to run tests

standalone, e.g., "./pg_regress int2".
This commit is contained in:
Peter Eisentraut 2000-11-22 01:47:47 +00:00
parent 98e195d23b
commit 5ce0804b51

View File

@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.12 2000/11/21 23:40:28 petere Exp $ # $Header: /cvsroot/pgsql/src/test/regress/Attic/pg_regress.sh,v 1.13 2000/11/22 01:47:47 petere Exp $
me=`basename $0` me=`basename $0`
: ${TMPDIR=/tmp} : ${TMPDIR=/tmp}
@ -445,7 +445,7 @@ cat /dev/null >"$diff_file"
lno=0 lno=0
( (
[ "$enable_shared" != yes ] && echo "ignore: plpgsql" [ "$enable_shared" != yes ] && echo "ignore: plpgsql"
cat $schedule cat $schedule </dev/null
for x in $extra_tests; do for x in $extra_tests; do
echo "test: $x" echo "test: $x"
done done