From cba5da5382d73b7ca6b46157889b14e5f6e2ee16 Mon Sep 17 00:00:00 2001 From: Daniel Silverstone Date: Sat, 8 Apr 2017 12:07:12 +0100 Subject: makes GTT coverage optional The gitano-test-tool coverage was consuming a lot of time and slowing down coverage test running. In addition it was around 2/3 of all processes covered and as such was making coverage report generation slow too. This change adds a COVER_GTT makefile argument which must be set to 'yes' in order for COVERAGE=yes test runs to also cover gtt. --- Makefile | 23 ++++++++++++++++++++++- 1 file changed, 22 insertions(+), 1 deletion(-) diff --git a/Makefile b/Makefile index c85383a..4eed020 100644 --- a/Makefile +++ b/Makefile @@ -96,12 +96,33 @@ $(RUN_GEN_BIN) $(shell pwd) $(shell pwd)/bin $(shell pwd)/lib $(shell pwd)/plugi chmod 755 $2 endef +ifeq ($(COVER_GTT),yes) +define GEN_LOCAL_TESTING_BIN + +$(RUN_GEN_BIN) $(shell pwd) $(shell pwd)/bin $(shell pwd)/lib $(shell pwd)/plugins $1 $2 $(shell pwd)/extras/luacov/src $(shell pwd)/.coverage/ +chmod 755 $2 + +endef +else +define GEN_LOCAL_TESTING_BIN + +$(RUN_GEN_BIN) $(shell pwd) $(shell pwd)/bin $(shell pwd)/lib $(shell pwd)/plugins $1 $2 +chmod 755 $2 + +endef +endif else define GEN_LOCAL_BIN $(RUN_GEN_BIN) $(shell pwd) $(shell pwd)/bin $(shell pwd)/lib $(shell pwd)/plugins $1 $2 chmod 755 $2 +endef +define GEN_LOCAL_TESTING_BIN + +$(RUN_GEN_BIN) $(shell pwd) $(shell pwd)/bin $(shell pwd)/lib $(shell pwd)/plugins $1 $2 +chmod 755 $2 + endef endif @@ -163,7 +184,7 @@ bin/%: bin/%.in $(GEN_BIN) FORCE @$(call GEN_LOCAL_BIN,$<,$@) testing/%: testing/%.in $(GEN_BIN) FORCE - @$(call GEN_LOCAL_BIN,$<,$@) + @$(call GEN_LOCAL_TESTING_BIN,$<,$@) lib/gitano/%.lua: lib/gitano/%.lua.in $(GEN_BIN) FORCE @$(call GEN_LOCAL_MOD,$<,$@) -- cgit v1.2.1