From b8001f48b2c11ff53f90c56ea9e25aab182d17bc Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 10 May 2023 11:38:36 +0200 Subject: [PATCH] tools/buildsystem_sanity_check: update exclude list --- dist/tools/buildsystem_sanity_check/check.sh | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dist/tools/buildsystem_sanity_check/check.sh b/dist/tools/buildsystem_sanity_check/check.sh index d152251381..7e7f2cbf6e 100755 --- a/dist/tools/buildsystem_sanity_check/check.sh +++ b/dist/tools/buildsystem_sanity_check/check.sh @@ -261,7 +261,7 @@ checks_tests_application_not_defined_in_makefile() { patterns+=(-e '^[[:space:]]*APPLICATION[[:space:]:+]=') pathspec+=('tests/**/Makefile') - pathspec+=(':!tests/external_board_native/Makefile') + pathspec+=(':!tests/build_system/external_board_native/Makefile') git -C "${RIOTBASE}" grep -n "${patterns[@]}" -- "${pathspec[@]}" \ | error_with_message "Don't define APPLICATION in test Makefile"