[postgis-tickets] r16934 - Avoid running core and sfcgal regress tests in parallel
Sandro Santilli
strk at kbt.io
Sun Oct 21 11:36:37 PDT 2018
Author: strk
Date: 2018-10-21 23:36:37 -0700 (Sun, 21 Oct 2018)
New Revision: 16934
Modified:
trunk/regress/Makefile.in
Log:
Avoid running core and sfcgal regress tests in parallel
... the alternative would be using different databases but lets
change things incrementally ...
Modified: trunk/regress/Makefile.in
===================================================================
--- trunk/regress/Makefile.in 2018-10-22 06:23:34 UTC (rev 16933)
+++ trunk/regress/Makefile.in 2018-10-22 06:36:37 UTC (rev 16934)
@@ -24,18 +24,12 @@
all:
-check: staged-install check-core
-
+check: staged-install
+ $(MAKE) -C core check
ifeq ($(HAVE_SFCGAL),yes)
-check: check-sfcgal
+ $(MAKE) -C sfcgal check
endif
-check-core:
- $(MAKE) -C core check
-
-check-sfcgal:
- $(MAKE) -C sfcgal check
-
clean:
$(MAKE) -C core $@
$(MAKE) -C sfcgal $@
More information about the postgis-tickets
mailing list