tests: blacklist highlevel_stdio instead of bootloader_%

This commit is contained in:
Benjamin Valentin 2020-09-22 14:41:44 +02:00
parent 971f0f6fee
commit d0e726242d
2 changed files with 6 additions and 10 deletions

View File

@ -2,10 +2,9 @@ include ../Makefile.tests_common
USEMODULE += ssp USEMODULE += ssp
# This test intentionally crashes the firmware and when using a board with a # This test intentionally crashes the firmware and when using a board with
# preflashed bootloader, it cannot be reflashed automatically afterwards. # stdio via CDC ACM, RIOT can't print anything after the crash.
FEATURES_BLACKLIST += bootloader_arduino FEATURES_BLACKLIST += highlevel_stdio
FEATURES_BLACKLIST += bootloader_nrfutil
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include

View File

@ -13,12 +13,9 @@ endif
DISABLE_MODULE += auto_init auto_init_% DISABLE_MODULE += auto_init auto_init_%
# boards using a preflashed bootloader require auto_init to # boards using stdio via CDC ACM require auto_init to automatically
# automatically initialize stdio over USB. Without this, the bootloader # initialize stdio over USB.
# management feature cannot be used (auto reset and auto reboot in bootloader FEATURES_BLACKLIST += highlevel_stdio
# mode)
FEATURES_BLACKLIST += bootloader_arduino
FEATURES_BLACKLIST += bootloader_nrfutil
# Pull in `Makefile.include`s from the test suites: # Pull in `Makefile.include`s from the test suites:
-include $(UNIT_TESTS:%=$(RIOTBASE)/tests/unittests/%/Makefile.include) -include $(UNIT_TESTS:%=$(RIOTBASE)/tests/unittests/%/Makefile.include)