[postgis-tickets] r16936 - Fix support for overriding RUNTESTFLAGS via env variable
Sandro Santilli
strk at kbt.io
Mon Oct 22 01:02:50 PDT 2018
Author: strk
Date: 2018-10-22 01:02:50 -0700 (Mon, 22 Oct 2018)
New Revision: 16936
Modified:
trunk/regress/sfcgal/Makefile.in
Log:
Fix support for overriding RUNTESTFLAGS via env variable
otherwise --sfcgal gets missing
Modified: trunk/regress/sfcgal/Makefile.in
===================================================================
--- trunk/regress/sfcgal/Makefile.in 2018-10-22 06:36:43 UTC (rev 16935)
+++ trunk/regress/sfcgal/Makefile.in 2018-10-22 08:02:50 UTC (rev 16936)
@@ -45,13 +45,11 @@
wmsservers.sql \
approximatemedialaxis.sql
-RUNTESTFLAGS += --sfcgal
-
test check:
- $(PERL) ../run_test.pl $(RUNTESTFLAGS) $(TESTS)
+ $(PERL) ../run_test.pl --sfcgal $(RUNTESTFLAGS) $(TESTS)
# only run upgrade test if RUNTESTFLAGS was not already doing that
if echo "$(RUNTESTFLAGS)" | grep -vq -- --upgrade; then \
- $(PERL) ../run_test.pl --upgrade $(RUNTESTFLAGS) $(TESTS); \
+ $(PERL) ../run_test.pl --sfcgal --upgrade $(RUNTESTFLAGS) $(TESTS); \
fi
else
More information about the postgis-tickets
mailing list