Commit 757b7184 authored by Bruce Momjian's avatar Bruce Momjian

Update pgtest to use 'gmake check'.

parent ea886339
: :
# This runs a build/initdb/regression test suite # This runs a build/initdb/regression test suite
#
[ ! "$PGDATA" ] && echo "You must define PGDATA" 1>&2 && exit 1 # This will start a temporary postmaster, so you have to
# have enough kernel resources to run two postmasters or
# stop your main postmaster before running this script.
#
# Use -n to prevent 'gmake clean'
[ ! -d src ] && echo "This must be run from the top of the PostgreSQL source tree" 1>&2 && exit 1 [ ! -d src ] && echo "This must be run from the top of the PostgreSQL source tree" 1>&2 && exit 1
...@@ -10,27 +14,15 @@ trap "rm -rf /tmp/$$" 0 1 2 3 15 ...@@ -10,27 +14,15 @@ trap "rm -rf /tmp/$$" 0 1 2 3 15
mkdir /tmp/$$ mkdir /tmp/$$
TMP="/tmp/$$" TMP="/tmp/$$"
pg_ctl stop [ "X$1" != "X-n" ] && PGCLEAN=clean
rm -rf "$PGDATA"
cd src
# return command error value (gmake $PGCLEAN check 2>&1; echo "$?" > $TMP/ret) |
(gmake clean; gmake install 2>&1; echo "$?" > $TMP/ret) |
(tee $TMP/0; exit `cat $TMP/ret`) && (tee $TMP/0; exit `cat $TMP/ret`) &&
initdb && cat $TMP/0 |
pg_ctl start &&
createdb test &&
cd src/test/regress &&
gmake clean &&
gmake installcheck
# The following grep's have to be adjusted for your setup because # The following grep's have to be adjusted for your setup because
# certain warnings are acceptable. # certain warnings are acceptable.
grep warning |
cat $TMP/0 | grep -v setproctitle |
grep -v warning | grep -v find_rule |
grep -v setproctitle | grep -v yy_flex_realloc |
grep -v find_rule | grep -v '\[javac\] [0-9]* warning'
grep -v yy_flex_realloc |
grep -v '\[javac\] [0-9]* warning'
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