mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
5b7a1bed2f
This test sporadically failed on multiple machines compiled with both GNU and LLVM toolchains. To not waste more CI time by sporadically failing unrelated CI runs, let's disable the test for now.
70 lines
1.7 KiB
Makefile
70 lines
1.7 KiB
Makefile
include ../Makefile.net_common
|
|
|
|
# This tests fails sporadically in the CI on native with both GCC and LLVM
|
|
# toolchains. Maybe it just fluke and due to high load on the machines,
|
|
# maybe it is an actual race condition.
|
|
#
|
|
# TODO: Solve the issue and re-enable
|
|
TEST_ON_CI_BLACKLIST += native
|
|
|
|
USEMODULE += auto_init_gnrc_netif
|
|
USEMODULE += gnrc_ipv6_router_default
|
|
USEMODULE += gnrc_sixlowpan_frag_sfr
|
|
USEMODULE += gnrc_udp
|
|
USEMODULE += gnrc_rpl
|
|
USEMODULE += auto_init_gnrc_rpl
|
|
USEMODULE += gnrc_pktdump
|
|
USEMODULE += gnrc_icmpv6_echo
|
|
USEMODULE += shell
|
|
USEMODULE += shell_cmds_default
|
|
USEMODULE += shell_cmd_gnrc_pktbuf
|
|
USEMODULE += shell_cmd_gnrc_udp
|
|
USEMODULE += ps
|
|
USEMODULE += netstats_l2
|
|
USEMODULE += netstats_ipv6
|
|
USEMODULE += netstats_rpl
|
|
|
|
ifeq (native, $(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
|
|
|
|
CONGURE_IMPL ?= congure_sfr
|
|
|
|
ifeq (congure_abe,$(CONGURE_IMPL))
|
|
USEMODULE += gnrc_sixlowpan_frag_sfr_congure_abe
|
|
else
|
|
ifeq (congure_quic,$(CONGURE_IMPL))
|
|
USEMODULE += gnrc_sixlowpan_frag_sfr_congure_quic
|
|
USEMODULE += ztimer_msec
|
|
else
|
|
ifeq (congure_reno,$(CONGURE_IMPL))
|
|
USEMODULE += gnrc_sixlowpan_frag_sfr_congure_reno
|
|
else
|
|
ifeq (congure_sfr,$(CONGURE_IMPL))
|
|
USEMODULE += gnrc_sixlowpan_frag_sfr_congure_sfr
|
|
else
|
|
$(error "Unknown CongURE implementation `$(CONGURE_IMPL)`")
|
|
endif
|
|
endif
|
|
endif
|
|
endif
|
|
|
|
.PHONY: zep_dispatch
|
|
|
|
zep_dispatch:
|
|
$(Q)env -u CC -u CFLAGS $(MAKE) -C $(RIOTTOOLS) $@
|
|
|
|
TEST_DEPS += zep_dispatch
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# Set a custom channel if needed
|
|
include $(RIOTMAKE)/default-radio-settings.inc.mk
|