mirror of
https://github.com/betaflight/betaflight.git
synced 2025-07-15 20:35:33 +03:00
Merge pull request #7490 from mikeller/add_makefile_test_invocations
Added 'test_help' and 'test_<testname>' targets to Makefile.
This commit is contained in:
commit
b36acf5576
1 changed files with 8 additions and 0 deletions
8
Makefile
8
Makefile
|
@ -538,6 +538,14 @@ targets-f7-print:
|
|||
test junittest test-representative:
|
||||
$(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…
Add table
Add a link
Reference in a new issue