1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 16:01:18 +01:00

tools/buildsystem_check: exclude tests/external_board_native path

This test application must act as a regular application to showcase how to provide a board support from an external directory
This commit is contained in:
Alexandre Abadie 2019-12-16 15:35:00 +01:00
parent 418bcfb95d
commit 211cec8b3e
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -196,6 +196,7 @@ checks_tests_application_not_defined_in_makefile() {
patterns+=(-e '^[[:space:]]*APPLICATION[[:space:]:+]=')
pathspec+=('tests/**/Makefile')
pathspec+=(':!tests/external_board_native/Makefile')
git -C "${RIOTBASE}" grep "${patterns[@]}" -- "${pathspec[@]}" \
| error_with_message "Don't define APPLICATION in test Makefile"