From c7b365c717ec46d423c2fcbd7a016f237a5664f9 Mon Sep 17 00:00:00 2001 From: Alexandre Abadie Date: Wed, 18 Mar 2020 11:44:10 +0100 Subject: [PATCH] tests: handle cases for bootloader_nrfutil blacklist --- tests/ssp/Makefile | 1 + tests/unittests/Makefile | 3 ++- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/tests/ssp/Makefile b/tests/ssp/Makefile index eb11ad187106f..2dacca7f281d7 100644 --- a/tests/ssp/Makefile +++ b/tests/ssp/Makefile @@ -5,6 +5,7 @@ USEMODULE += ssp # This test intentionally crashes the firmware and when using a board with a # preflashed bootloader, it cannot be reflashed automatically afterwards. FEATURES_BLACKLIST += bootloader_arduino +FEATURES_BLACKLIST += bootloader_nrfutil include $(RIOTBASE)/Makefile.include diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index 848c2fbc36132..f2f70dcad3611 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -13,11 +13,12 @@ endif DISABLE_MODULE += auto_init auto_init_% -# boards using arduino bootloader require auto_init to +# boards using a preflashed bootloader require auto_init to # automatically initialize stdio over USB. Without this, the bootloader # management feature cannot be used (auto reset and auto reboot in bootloader # mode) FEATURES_BLACKLIST += bootloader_arduino +FEATURES_BLACKLIST += bootloader_nrfutil # Pull in `Makefile.include`s from the test suites: -include $(UNIT_TESTS:%=$(RIOTBASE)/tests/unittests/%/Makefile.include)