[postgis-tickets] r16337 - [debbie] pass -v swith to run_test.pl consistently

Sandro Santilli strk at kbt.io
Fri Jan 19 01:27:17 PST 2018


Author: strk
Date: 2018-01-19 01:27:17 -0800 (Fri, 19 Jan 2018)
New Revision: 16337

Modified:
   trunk/ci/debbie/postgis_regress.sh
Log:
[debbie] pass -v swith to run_test.pl consistently

Modified: trunk/ci/debbie/postgis_regress.sh
===================================================================
--- trunk/ci/debbie/postgis_regress.sh	2018-01-18 21:46:35 UTC (rev 16336)
+++ trunk/ci/debbie/postgis_regress.sh	2018-01-19 09:27:17 UTC (rev 16337)
@@ -71,14 +71,16 @@
   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 @@
 
 if [ "$DUMP_RESTORE" = "1" ]; then
  echo "Dum restore test"
- make check RUNTESTFLAGS="-v --dumprestore"
+ make check RUNTESTFLAGS="$RUNTESTFLAGS --dumprestore"
  if [ "$?" != "0" ]; then
   exit $?
  fi



More information about the postgis-tickets mailing list