mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 08:32:43 +01:00
8e5a67b088
19870: tests/gcoap_fileserver: only enable test with GCC r=benpicco a=benpicco 19900: gnrc_ipv6_nib: fix for border router with non-6lo interfaces r=benpicco a=benpicco 19902: tests/pkg/relic: skip CI testing with samr21-xpro and llvm toolchain r=benpicco a=aabadie Co-authored-by: Benjamin Valentin <benjamin.valentin@ml-pa.com> Co-authored-by: Benjamin Valentin <benjamin.valentin@bht-berlin.de> Co-authored-by: Alexandre Abadie <alexandre.abadie@inria.fr>
54 lines
1.3 KiB
Makefile
54 lines
1.3 KiB
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
|
|
|
|
USEMODULE += gcoap_fileserver
|
|
USEMODULE += gcoap_fileserver_put
|
|
|
|
USEMODULE += nanocoap_vfs
|
|
|
|
USEMODULE += constfs
|
|
USEMODULE += vfs_default
|
|
USEMODULE += vfs_auto_format
|
|
|
|
USEMODULE += hashes
|
|
USEMODULE += shell_cmd_md5sum
|
|
|
|
# automated test only works on native
|
|
TEST_ON_CI_WHITELIST += native
|
|
# FIXME: for some reason the test fails very often when built with clang
|
|
TOOLCHAINS_BLACKLIST += llvm
|
|
|
|
# use small blocksize for test to increase chance for errors
|
|
CFLAGS += -DCONFIG_NANOCOAP_BLOCKSIZE_DEFAULT=COAP_BLOCKSIZE_16
|
|
CFLAGS += -DCONFIG_COAP_ACK_TIMEOUT_MS=100UL
|
|
CFLAGS += -DCONFIG_COAP_MAX_RETRANSMIT=10
|
|
|
|
ifeq (native, $(BOARD))
|
|
USEMODULE += socket_zep
|
|
USEMODULE += socket_zep_hello
|
|
USEMODULE += netdev
|
|
TERMFLAGS += -z 127.0.0.1:17754 # Murdock has no IPv6 support
|
|
# make sure each instance gets their own fs
|
|
CFLAGS += -DCONFIG_NATIVE_ISOLATE_FS=1
|
|
else
|
|
USEMODULE += netdev_default
|
|
endif
|
|
|
|
.PHONY: host-tools
|
|
|
|
# Build zep_dispatch
|
|
host-tools:
|
|
$(Q)env -u CC -u CFLAGS $(MAKE) -C $(RIOTTOOLS)
|
|
|
|
TEST_DEPS += host-tools
|
|
|
|
include $(RIOTBASE)/Makefile.include
|