Added 'test_help' and 'test_<testname>' targets to Makefile.

This commit is contained in:
mikeller 2019-01-28 20:36:33 +13:00
parent 6c8b3a7193
commit 4bd9605d2a
1 changed files with 8 additions and 0 deletions

View File

@ -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 \