mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
27 lines
840 B
Makefile
27 lines
840 B
Makefile
include ../Makefile.tests_common
|
|
|
|
BOARD_PROVIDES_NETIF := airfy-beacon fox iotlab-m3 mulle native nrf51dk nrf51dongle \
|
|
nrf6310 pba-d-01-kw2x samd21-xpro saml21-xpro samr21-xpro spark-core \
|
|
yunjia-nrf51822 msba2 \
|
|
esp32-mh-et-live-minikit esp32-olimex-evb \
|
|
esp32-wemos-lolin-d32-pro esp32-wroom-32 esp32-wrover-kit \
|
|
esp8266-esp-12x esp8266-olimex-mod esp8266-sparkfun-thing
|
|
|
|
BOARD_WHITELIST += $(BOARD_PROVIDES_NETIF)
|
|
|
|
USEMODULE += shell
|
|
USEMODULE += shell_commands
|
|
USEMODULE += gnrc
|
|
USEMODULE += gnrc_netdev_default
|
|
USEMODULE += auto_init_gnrc_netif
|
|
USEMODULE += netstats_l2
|
|
|
|
# Cannot run the test on `murdock` in `native`
|
|
# open(/dev/net/tun): No such file or directory
|
|
TEST_ON_CI_BLACKLIST += native
|
|
|
|
# sometimes fails on esp32, see #14237.
|
|
TEST_ON_CI_BLACKLIST += esp32-wroom-32
|
|
|
|
include $(RIOTBASE)/Makefile.include
|