aboutsummaryrefslogtreecommitdiffstats
path: root/plugins/ct.mk
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/ct.mk')
-rw-r--r--plugins/ct.mk6
1 files changed, 3 insertions, 3 deletions
diff --git a/plugins/ct.mk b/plugins/ct.mk
index 7e0f683..fb4b1ca 100644
--- a/plugins/ct.mk
+++ b/plugins/ct.mk
@@ -19,7 +19,7 @@ tests:: ct
distclean:: distclean-ct
help::
- @printf "%s\n" "" \
+ $(verbose) printf "%s\n" "" \
"Common_test targets:" \
" ct Run all the common_test suites for this project" \
"" \
@@ -39,13 +39,13 @@ ifeq ($(CT_SUITES),)
ct:
else
ct: test-build
- @mkdir -p $(CURDIR)/logs/
+ $(verbose) mkdir -p $(CURDIR)/logs/
$(gen_verbose) $(CT_RUN) -suite $(addsuffix _SUITE,$(CT_SUITES)) $(CT_OPTS)
endif
define ct_suite_target
ct-$(1): test-build
- @mkdir -p $(CURDIR)/logs/
+ $(verbose) mkdir -p $(CURDIR)/logs/
$(gen_verbose) $(CT_RUN) -suite $(addsuffix _SUITE,$(1)) $(CT_OPTS)
endef