aboutsummaryrefslogtreecommitdiffstats
path: root/plugins
diff options
context:
space:
mode:
authorLoïc Hoguin <[email protected]>2014-07-30 15:29:12 +0200
committerLoïc Hoguin <[email protected]>2014-07-30 15:29:12 +0200
commit075bde12e01d20fbe986f45e135261712a4cd13e (patch)
treef244ebb7384277ee85f76961bdd1085110056568 /plugins
parent3d44f83ebb1f15922a2531085b520253aae35548 (diff)
parente8d3f9c8e144921221e7ea5ddfa14bb2b765a128 (diff)
downloaderlang.mk-075bde12e01d20fbe986f45e135261712a4cd13e.tar.gz
erlang.mk-075bde12e01d20fbe986f45e135261712a4cd13e.tar.bz2
erlang.mk-075bde12e01d20fbe986f45e135261712a4cd13e.zip
Merge branch 'missing-test-dir-bug' of git://github.com/sedrik/erlang.mk
Diffstat (limited to 'plugins')
-rw-r--r--plugins/ct.mk6
1 files changed, 5 insertions, 1 deletions
diff --git a/plugins/ct.mk b/plugins/ct.mk
index 91edf4e..a2e64ef 100644
--- a/plugins/ct.mk
+++ b/plugins/ct.mk
@@ -6,7 +6,11 @@
# Configuration.
CT_OPTS ?=
-CT_SUITES ?= $(sort $(subst _SUITE.erl,,$(shell find test -type f -name \*_SUITE.erl -exec basename {} \;)))
+ifneq ($(wildcard test/),)
+ CT_SUITES ?= $(sort $(subst _SUITE.erl,,$(shell find test -type f -name \*_SUITE.erl -exec basename {} \;)))
+else
+ CT_SUITES ?=
+endif
TEST_ERLC_OPTS ?= +debug_info +warn_export_vars +warn_shadow_vars +warn_obsolete_guard
TEST_ERLC_OPTS += -DTEST=1 -DEXTRA=1 +'{parse_transform, eunit_autoexport}'