From 4bd9605d2a41f64fe6b10852a93fb4c2a56f4fa2 Mon Sep 17 00:00:00 2001 From: mikeller Date: Mon, 28 Jan 2019 20:36:33 +1300 Subject: [PATCH] Added 'test_help' and 'test_' targets to Makefile. --- Makefile | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/Makefile b/Makefile index 624e1e4e0a..601a57e00e 100644 --- a/Makefile +++ b/Makefile @@ -537,6 +537,14 @@ targets-f7-print: test junittest: $(V0) cd src/test && $(MAKE) $@ +## test_help : print the help message for the test suite (including a list of the available tests) +test_help: + $(V0) cd src/test && $(MAKE) help + +## test_% : run test 'test_%' from the test suite +test_%: + $(V0) cd src/test && $(MAKE) $@ + check-target-independence: $(V1) for test_target in $(VALID_TARGETS); do \