2018-01-30 19:05:08 +01:00
|
|
|
# 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
|
2016-02-21 20:34:29 +01:00
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
2020-01-16 11:01:59 +01:00
|
|
|
DISABLE_MODULE += auto_init_gnrc_%
|
2016-02-21 20:34:29 +01:00
|
|
|
|
|
|
|
USEMODULE += gnrc
|
|
|
|
USEMODULE += gnrc_neterr
|
|
|
|
USEMODULE += gnrc_netif
|
2017-11-13 12:27:58 +01:00
|
|
|
USEMODULE += netdev_eth
|
2017-02-15 13:07:34 +01:00
|
|
|
USEMODULE += netdev_test
|
2016-02-21 20:34:29 +01:00
|
|
|
USEMODULE += od
|
|
|
|
|
2020-10-16 10:37:52 +02:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
|
2020-05-12 19:34:05 +02:00
|
|
|
# Set GNRC_PKTBUF_SIZE via CFLAGS if not being set via Kconfig.
|
|
|
|
ifndef CONFIG_GNRC_PKTBUF_SIZE
|
|
|
|
CFLAGS += -DCONFIG_GNRC_PKTBUF_SIZE=200
|
|
|
|
endif
|