diff options
author | Loïc Hoguin <[email protected]> | 2017-05-12 19:09:27 +0200 |
---|---|---|
committer | Loïc Hoguin <[email protected]> | 2017-05-12 19:09:27 +0200 |
commit | 28ab68285c5e7611ef0e450b5611e666c3253add (patch) | |
tree | bd01ab75bbf67d3760b51d9887b2b3d75675f344 /plugins/ct.mk | |
parent | a40abed1616da47fbd83f1548228e8129bd42deb (diff) | |
download | erlang.mk-28ab68285c5e7611ef0e450b5611e666c3253add.tar.gz erlang.mk-28ab68285c5e7611ef0e450b5611e666c3253add.tar.bz2 erlang.mk-28ab68285c5e7611ef0e450b5611e666c3253add.zip |
Fix the test merged in the previous commit
Diffstat (limited to 'plugins/ct.mk')
-rw-r--r-- | plugins/ct.mk | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/plugins/ct.mk b/plugins/ct.mk index 9276daf..ef649e3 100644 --- a/plugins/ct.mk +++ b/plugins/ct.mk @@ -41,10 +41,13 @@ CT_RUN = ct_run \ ifeq ($(CT_SUITES),) ct: $(if $(IS_APP),,apps-ct) else +# We do not run tests if we are in an apps/* with no test directory. +ifneq ($(IS_APP)$(wildcard $(TEST_DIR)),1) ct: test-build $(if $(IS_APP),,apps-ct) $(verbose) mkdir -p $(CT_LOGS_DIR) $(gen_verbose) $(CT_RUN) -sname ct_$(PROJECT) -suite $(addsuffix _SUITE,$(CT_SUITES)) $(CT_OPTS) endif +endif ifneq ($(ALL_APPS_DIRS),) define ct_app_target |