2016-03-01 11:28:55 +01:00
|
|
|
# name of your application
|
2017-01-20 15:46:53 +01:00
|
|
|
include ../Makefile.tests_common
|
2016-03-01 11:28:55 +01:00
|
|
|
|
2018-08-17 11:28:32 +02:00
|
|
|
BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \
|
|
|
|
chronos msb-430 msb-430h nucleo-f030r8 \
|
2018-07-31 18:04:01 +02:00
|
|
|
nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \
|
|
|
|
nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \
|
2018-08-17 11:28:32 +02:00
|
|
|
stm32f0discovery waspmote-pro
|
2016-03-01 11:28:55 +01:00
|
|
|
|
2018-07-31 18:04:01 +02:00
|
|
|
# use Ethernet as link-layer protocol
|
|
|
|
USEMODULE += netdev_eth
|
|
|
|
USEMODULE += netdev_test
|
2016-03-01 11:28:55 +01:00
|
|
|
# Specify the mandatory networking modules for IPv6
|
|
|
|
USEMODULE += gnrc_ipv6_router_default
|
|
|
|
# IPv6 extension headers
|
|
|
|
USEMODULE += gnrc_ipv6_ext
|
|
|
|
USEMODULE += gnrc_rpl_srh
|
2016-04-22 10:09:13 +02:00
|
|
|
USEMODULE += gnrc_sixlowpan_iphc_nhc
|
|
|
|
# UDP
|
|
|
|
USEMODULE += gnrc_udp
|
2016-03-01 11:28:55 +01:00
|
|
|
# Add also the shell, some shell commands
|
|
|
|
USEMODULE += ps
|
|
|
|
|
2018-01-17 16:25:26 +01:00
|
|
|
CFLAGS += -DGNRC_NETIF_IPV6_ADDRS_NUMOF=3
|
|
|
|
|
2018-07-31 18:04:01 +02:00
|
|
|
TEST_ON_CI_WHITELIST += all
|
|
|
|
|
2016-03-01 11:28:55 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
|
|
|
|
2017-10-24 11:58:39 +02:00
|
|
|
# The test can check more things with ENABLE_DEBUG set to 1 in gnrc_ipv6.c
|
2016-03-01 11:28:55 +01:00
|
|
|
test:
|
2017-10-19 19:38:41 +02:00
|
|
|
tests/01-run.py
|