diff --git a/Makefile b/Makefile index 50cdcb99d..f2180e1a7 100644 --- a/Makefile +++ b/Makefile @@ -15,6 +15,8 @@ REL_PROFILES := emqx emqx-edge PKG_PROFILES := emqx-pkg emqx-edge-pkg PROFILES := $(REL_PROFILES) $(PKG_PROFILES) default +CT_NODE_NAME ?= 'test@127.0.0.1' + export REBAR_GIT_CLONE_OPTIONS += --depth=1 .PHONY: default @@ -44,7 +46,7 @@ proper: $(REBAR) .PHONY: ct ct: $(REBAR) conf-segs - @ENABLE_COVER_COMPILE=1 $(REBAR) ct --name 'test@127.0.0.1' -c -v + @ENABLE_COVER_COMPILE=1 $(REBAR) ct --name $(CT_NODE_NAME) -c -v APPS=$(shell $(CURDIR)/scripts/find-apps.sh) @@ -52,7 +54,7 @@ APPS=$(shell $(CURDIR)/scripts/find-apps.sh) .PHONY: $(APPS:%=%-ct) define gen-app-ct-target $1-ct: - $(REBAR) ct --name 'test@127.0.0.1' -v --suite $(shell $(CURDIR)/scripts/find-suites.sh $1) + $(REBAR) ct --name $(CT_NODE_NAME) -v --suite $(shell $(CURDIR)/scripts/find-suites.sh $1) endef $(foreach app,$(APPS),$(eval $(call gen-app-ct-target,$(app)))) @@ -64,6 +66,16 @@ $1-prop: endef $(foreach app,$(APPS),$(eval $(call gen-app-prop-target,$(app)))) +.PHONY: ct-suite +ct-suite: $(REBAR) +ifneq ($(TESTCASE),) + $(REBAR) ct -v --readable=false --name $(CT_NODE_NAME) --suite $(SUITE) --case $(TESTCASE) +else ifneq ($(GROUP),) + $(REBAR) ct -v --readable=false --name $(CT_NODE_NAME) --suite $(SUITE) --group $(GROUP) +else + $(REBAR) ct -v --readable=false --name $(CT_NODE_NAME) --suite $(SUITE) +endif + .PHONY: cover cover: $(REBAR) @ENABLE_COVER_COMPILE=1 $(REBAR) cover