1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/gnrc_tx_sync/Makefile
Marian Buschsieweke adad17e2a9
tests/gnrc_tx_sync: spice out test application
Testing with SFR can controlled via `TEST_FRAG_SFR={0,1}`, just like
testing with 6LoWPAN was controlled via `TEST_6LO={0,1}`.
2022-05-23 20:10:26 +02:00

30 lines
597 B
Makefile

include ../Makefile.tests_common
TEST_6LO ?= 1
TEST_FRAG_SFR ?= 1
ifeq (1,$(TEST_6LO))
USEMODULE += gnrc_sixlowpan_default
USEMODULE += netdev_ieee802154
ifeq (1,$(TEST_FRAG_SFR))
USEMODULE += gnrc_sixlowpan_frag_sfr
endif
else
USEMODULE += gnrc_ipv6_default
USEMODULE += netdev_eth
endif
USEMODULE += gnrc_tx_sync
USEMODULE += netdev_test
USEMODULE += sock_udp
USEMODULE += xtimer
USEMODULE += auto_init_gnrc_netif
USEMODULE += iolist
# microbit qemu failing currently
TEST_ON_CI_BLACKLIST += microbit
include $(RIOTBASE)/Makefile.include
CFLAGS += -DDEBUG_ASSERT_VERBOSE=1