1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/warn_conflict/Makefile
Gaëtan Harter 8e5422ff78
applications: remove 'TEST_ON_CI_WHITELIST += all'
This is now the default so not required anymore.
2019-08-21 12:51:17 +02:00

14 lines
515 B
Makefile

BOARD ?= stm32f4discovery
include ../Makefile.tests_common
# The stm32f4discovery is the only board that provides known conflicting features,
# so using this compile test on other boards will not provide the expected warning.
BOARD_WHITELIST := stm32f4discovery
# These features have a chance to use/access the shared `SPI_DEV(0)` on
# stm32f4discovery, which would probably produce an unexpected behavior in the
# user application.
FEATURES_REQUIRED = periph_dac periph_spi
include $(RIOTBASE)/Makefile.include