From: Sandro Santilli Date: Fri, 19 Jan 2018 09:27:17 +0000 (+0000) Subject: [debbie] pass -v swith to run_test.pl consistently X-Git-Tag: 2.5.0alpha~157 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=d47a9f44780429d650fe7528e34e7c89a3470840;p=postgis [debbie] pass -v swith to run_test.pl consistently git-svn-id: http://svn.osgeo.org/postgis/trunk@16337 b70326c6-7e19-0410-871a-916f4a2858ee --- diff --git a/ci/debbie/postgis_regress.sh b/ci/debbie/postgis_regress.sh index 49e1d3cec..934377e0f 100644 --- a/ci/debbie/postgis_regress.sh +++ b/ci/debbie/postgis_regress.sh @@ -71,14 +71,16 @@ if [ "$?" != "0" ]; then exit $? fi -make check RUNTESTFLAGS=-v +export RUNTESTFLAGS=-v + +make check ## install so we can test upgrades/dump-restores etc. make install if [ "$MAKE_EXTENSION" = "1" ]; then echo "Running extension testing" - make check RUNTESTFLAGS=--extension + make check RUNTESTFLAGS="$RUNTESTFLAGS --extension" if [ "$?" != "0" ]; then exit $? fi @@ -86,7 +88,7 @@ fi if [ "$DUMP_RESTORE" = "1" ]; then echo "Dum restore test" - make check RUNTESTFLAGS="-v --dumprestore" + make check RUNTESTFLAGS="$RUNTESTFLAGS --dumprestore" if [ "$?" != "0" ]; then exit $? fi