Added 'test_help' and 'test_<testname>' targets to Makefile.
This commit is contained in:
parent
6c8b3a7193
commit
4bd9605d2a
8
Makefile
8
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 \
|
||||
|
|
Loading…
Reference in New Issue