postgresql/src/tools/pgtest

39 lines
1.0 KiB
Plaintext
Raw Normal View History

#!/bin/sh
2010-09-20 22:08:53 +02:00
# src/tools/pgtest
2003-06-22 06:22:57 +02:00
# This runs a build/initdb/regression test suite
2003-06-27 23:46:20 +02:00
#
# 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 'make clean'
MAKE="make"
2003-06-22 06:22:57 +02:00
[ ! -d src ] && echo "This must be run from the top of the PostgreSQL source tree" 1>&2 && exit 1
trap "rm -rf /tmp/$$" 0 1 2 3 15
mkdir /tmp/$$
TMP="/tmp/$$"
2003-06-27 23:46:20 +02:00
[ "X$1" != "X-n" ] && PGCLEAN=clean
2003-06-22 06:22:57 +02:00
# run make check, capture return code in $TMP/ret, then display
# that but capture it in $TMP/0 too, and return original make
# error code. If that succeded, display captured warnings
($MAKE $PGCLEAN check 2>&1; echo "$?" > $TMP/ret) |
2003-06-22 06:22:57 +02:00
(tee $TMP/0; exit `cat $TMP/ret`) &&
2003-06-27 23:46:20 +02:00
cat $TMP/0 |
# The following grep's have to be adjusted for your setup because
# certain warnings are acceptable.
grep -i warning |
grep -v setproctitle |
grep -v find_rule |
grep -v yy_flex_realloc
# return original make error code
exit `cat $TMP/ret`