aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2016-03-19 12:13:31 +0100
committerLoïc Hoguin <[email protected]>2016-03-19 12:13:31 +0100
commitd52bf8576c3b38e5219b361ee58c960a30225c4b (patch)
tree3d5aedd216942eb4b7f25402300e695829ec7ff0 /plugins
parent6e5ff123aeb78e8bbb5092b83577ffdfb5feb9b3 (diff)
parent8a69d434d90a1d971834ac4c81f060e9702b1252 (diff)
downloaderlang.mk-d52bf8576c3b38e5219b361ee58c960a30225c4b.tar.gz
erlang.mk-d52bf8576c3b38e5219b361ee58c960a30225c4b.tar.bz2
erlang.mk-d52bf8576c3b38e5219b361ee58c960a30225c4b.zip
Merge branch 'multi_app_ct' of https://github.com/ingwinlu/erlang.mk
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ct.mk4
1 files changed, 2 insertions, 2 deletions
diff --git a/plugins/ct.mk b/plugins/ct.mk
index c8f7bf8..4d0c020 100644
--- a/plugins/ct.mk
+++ b/plugins/ct.mk
@@ -31,7 +31,7 @@ help::
CT_RUN = ct_run \
-no_auto_compile \
-noinput \
- -pa $(CURDIR)/ebin $(DEPS_DIR)/*/ebin $(TEST_DIR) \
+ -pa $(CURDIR)/ebin $(DEPS_DIR)/*/ebin $(APPS_DIR)/*/ebin $(TEST_DIR) \
-dir $(TEST_DIR) \
-logdir $(CURDIR)/logs
@@ -51,7 +51,7 @@ endef
$(foreach app,$(ALL_APPS_DIRS),$(eval $(call ct_app_target,$(app))))
-apps-ct: $(addprefix apps-ct-,$(ALL_APPS_DIRS))
+apps-ct: test-build $(addprefix apps-ct-,$(ALL_APPS_DIRS))
endif
ifndef t