mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2024-12-29 04:50:03 +01:00
c4ba2b55d0
Use a minimalistic dummy instead of the default interface for testing the `gnrc_ipv6_ext` module. Currently the default interface is used which leads to problems with this test, since random traffic on the medium or a missing default interface might lead to failed results. Since the `tap` dependency is removed for `native`, I add this test for testing on CI.
32 lines
911 B
Makefile
32 lines
911 B
Makefile
# name of your application
|
|
include ../Makefile.tests_common
|
|
|
|
BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f030r8 \
|
|
nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \
|
|
nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \
|
|
stm32f0discovery
|
|
|
|
# use Ethernet as link-layer protocol
|
|
USEMODULE += netdev_eth
|
|
USEMODULE += netdev_test
|
|
# Specify the mandatory networking modules for IPv6
|
|
USEMODULE += gnrc_ipv6_router_default
|
|
# IPv6 extension headers
|
|
USEMODULE += gnrc_ipv6_ext
|
|
USEMODULE += gnrc_rpl_srh
|
|
USEMODULE += gnrc_sixlowpan_iphc_nhc
|
|
# UDP
|
|
USEMODULE += gnrc_udp
|
|
# Add also the shell, some shell commands
|
|
USEMODULE += ps
|
|
|
|
CFLAGS += -DGNRC_NETIF_IPV6_ADDRS_NUMOF=3
|
|
|
|
TEST_ON_CI_WHITELIST += all
|
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
# The test can check more things with ENABLE_DEBUG set to 1 in gnrc_ipv6.c
|
|
test:
|
|
tests/01-run.py
|