From 211cec8b3e194c9e9d4bf783dc2ed147a77df5f3 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Mon, 16 Dec 2019 15:35:00 +0100 Subject: [PATCH] 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 --- dist/tools/buildsystem_sanity_check/check.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/dist/tools/buildsystem_sanity_check/check.sh b/dist/tools/buildsystem_sanity_check/check.sh index 4c88bf8ac9..011db079b4 100755 --- a/dist/tools/buildsystem_sanity_check/check.sh +++ b/dist/tools/buildsystem_sanity_check/check.sh @@ -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"