1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00
RIOT/tests/net/gnrc_rpl/Makefile
Marian Buschsieweke 4d74b40ace
tests/net/gnrc_rpl: Try to disable the test on native
The test is already marked as disabled, but executed anyway. Hopefully
this does the trick.
2024-02-13 09:00:18 +01:00

34 lines
766 B
Makefile

include ../Makefile.net_common
USEMODULE += auto_init_gnrc_netif
USEMODULE += auto_init_gnrc_rpl
USEMODULE += gnrc_ipv6_router_default
USEMODULE += gnrc_icmpv6_echo
USEMODULE += gnrc_rpl
USEMODULE += shell
USEMODULE += shell_cmds_default
ifneq (,$(filter native native64,$(BOARD)))
USEMODULE += socket_zep
USEMODULE += socket_zep_hello
USEMODULE += netdev
TERMFLAGS += -z 127.0.0.1:17754 # Murdock has no IPv6 support
else
USEMODULE += netdev_default
# automated test only works on native
TESTS=
endif
.PHONY: host-tools
host-tools:
$(Q)env -u CC -u CFLAGS $(MAKE) -C $(RIOTTOOLS)
TEST_DEPS += host-tools
# Test is flaky and regularly derails unrelated merge trains
TEST_ON_CI_BLACKLIST += native native64
include $(RIOTBASE)/Makefile.include