1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-01-16 13:32:44 +01:00
RIOT/tests/netdev_test/Makefile
Marian Buschsieweke 855b5bd54d
tests: Updated BOARD_INSUFFICIENT_MEMORY
Added arduino-leonardo to BOARD_INSUFFICIENT_MEMORY where needed
2019-05-24 17:57:44 +02:00

24 lines
616 B
Makefile

# These tests hit an assert when used with gnrc_netif, but they exactly for
# testing this netdev simulating framework, so I it's better if the assert is
# ignored.
CFLAGS += -DNDEBUG
include ../Makefile.tests_common
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-leonardo arduino-nano \
arduino-uno nucleo-f031k6
DISABLE_MODULE = auto_init
USEMODULE += gnrc
USEMODULE += gnrc_neterr
USEMODULE += gnrc_netif
USEMODULE += netdev_eth
USEMODULE += netdev_test
USEMODULE += od
CFLAGS += -DGNRC_PKTBUF_SIZE=200
TEST_ON_CI_WHITELIST += all
include $(RIOTBASE)/Makefile.include