1
0
Fork 0
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:
Michael Keller 2019-01-30 00:54:00 +13:00 committed by GitHub
commit b36acf5576
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

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