2017-01-20 15:46:53 +01:00
|
|
|
include ../Makefile.tests_common
|
2015-11-15 21:00:07 +01:00
|
|
|
|
2017-01-15 17:35:56 +01:00
|
|
|
# lwIP's memory management doesn't seem to work on non 32-bit platforms at the
|
|
|
|
# moment.
|
|
|
|
BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \
|
2019-01-24 10:28:56 +01:00
|
|
|
esp8266-esp-12x esp8266-olimex-mod esp8266-sparkfun-thing \
|
2017-01-15 17:35:56 +01:00
|
|
|
msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \
|
2018-03-24 04:05:13 +01:00
|
|
|
wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained
|
2018-04-16 22:35:32 +02:00
|
|
|
BOARD_INSUFFICIENT_MEMORY := airfy-beacon hifive1 nrf6310 nucleo-f031k6 nucleo-f042k6 \
|
2018-07-17 14:07:17 +02:00
|
|
|
nucleo-l031k6 nucleo-f030r8 nucleo-f303k8 \
|
|
|
|
nucleo-f334r8 nucleo-l053r8 stm32f0discovery \
|
|
|
|
yunjia-nrf51822
|
2015-11-15 21:00:07 +01:00
|
|
|
|
2016-05-31 21:40:40 +02:00
|
|
|
# including lwip_ipv6_mld would currently break this test on at86rf2xx radios
|
2017-01-15 17:35:56 +01:00
|
|
|
USEMODULE += lwip lwip_ipv6_autoconfig lwip_sock_ip lwip_netdev
|
|
|
|
USEMODULE += lwip_udp lwip_sock_udp
|
|
|
|
USEMODULE += lwip_tcp lwip_sock_tcp
|
2015-11-15 21:00:07 +01:00
|
|
|
USEMODULE += ipv6_addr
|
|
|
|
USEMODULE += shell
|
|
|
|
USEMODULE += shell_commands
|
|
|
|
USEMODULE += ps
|
|
|
|
USEMODULE += od
|
2017-01-15 17:35:56 +01:00
|
|
|
USEMODULE += netdev_default
|
2015-11-15 21:00:07 +01:00
|
|
|
|
2018-07-12 23:19:51 +02:00
|
|
|
ifeq ($(BOARD),native)
|
|
|
|
USEMODULE += lwip_ethernet
|
|
|
|
endif
|
2015-11-15 21:00:07 +01:00
|
|
|
|
2017-10-19 14:36:57 +02:00
|
|
|
# Test only implemented for native
|
2018-07-12 23:19:51 +02:00
|
|
|
ifneq ($(BOARD),native)
|
|
|
|
TESTS=
|
2017-10-19 14:36:57 +02:00
|
|
|
endif
|
2018-07-12 23:19:51 +02:00
|
|
|
|
|
|
|
include $(RIOTBASE)/Makefile.include
|