From aca8953827c6093ccaeabd16d0baf34b8d80c928 Mon Sep 17 00:00:00 2001 From: Michel Rottleuthner <michel.rottleuthner@haw-hamburg.de> Date: Tue, 17 Jul 2018 14:07:17 +0200 Subject: [PATCH] tests: add nucleo-f303k8 to BOARD_INSUFFICIENT_MEMORY --- tests/driver_enc28j60/Makefile | 6 +++--- tests/gnrc_ipv6_ext/Makefile | 3 ++- tests/gnrc_sixlowpan/Makefile | 6 +++--- tests/gnrc_sock_dns/Makefile | 4 ++-- tests/lwip/Makefile | 5 +++-- tests/lwip_sock_ip/Makefile | 3 ++- tests/lwip_sock_tcp/Makefile | 3 ++- tests/lwip_sock_udp/Makefile | 3 ++- tests/nhdp/Makefile | 3 ++- tests/pkg_libcoap/Makefile | 3 ++- tests/pkg_microcoap/Makefile | 4 ++-- tests/posix_semaphore/Makefile | 4 ++-- tests/pthread_rwlock/Makefile | 3 ++- tests/slip/Makefile | 4 ++-- tests/sntp/Makefile | 4 ++-- tests/thread_cooperation/Makefile | 6 ++---- 16 files changed, 35 insertions(+), 29 deletions(-) diff --git a/tests/driver_enc28j60/Makefile b/tests/driver_enc28j60/Makefile index 27286c20f7..c076504011 100644 --- a/tests/driver_enc28j60/Makefile +++ b/tests/driver_enc28j60/Makefile @@ -1,9 +1,9 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo-f334r8 nucleo-l053r8 \ - nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 \ - stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \ - z1 + nucleo-f031k6 nucleo-f042k6 nucleo-f303k8 \ + nucleo-l031k6 stm32f0discovery telosb \ + wsn430-v1_3b wsn430-v1_4 z1 USEMODULE += auto_init_gnrc_netif USEMODULE += enc28j60 diff --git a/tests/gnrc_ipv6_ext/Makefile b/tests/gnrc_ipv6_ext/Makefile index d2e174fd87..f138edf0b4 100644 --- a/tests/gnrc_ipv6_ext/Makefile +++ b/tests/gnrc_ipv6_ext/Makefile @@ -3,7 +3,8 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \ nrf51dongle nrf6310 nucleo-f031k6 nucleo-f042k6 \ - nucleo-l031k6 nucleo-f030r8 nucleo-f103rb nucleo-f334r8 nucleo-l053r8 \ + nucleo-l031k6 nucleo-f030r8 nucleo-f103rb \ + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ spark-core stm32f0discovery telosb \ wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 diff --git a/tests/gnrc_sixlowpan/Makefile b/tests/gnrc_sixlowpan/Makefile index 71bc2edfd9..36853d619a 100644 --- a/tests/gnrc_sixlowpan/Makefile +++ b/tests/gnrc_sixlowpan/Makefile @@ -4,9 +4,9 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \ nrf51dongle nrf6310 nucleo-f031k6 nucleo-f042k6 \ nucleo-l031k6 nucleo-f030r8 nucleo-f070rb nucleo-f103rb \ - nucleo-f334r8 nucleo-l053r8 spark-core \ - stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \ - yunjia-nrf51822 z1 + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + spark-core stm32f0discovery telosb wsn430-v1_3b \ + wsn430-v1_4 yunjia-nrf51822 z1 # Include packages that pull up and auto-init the link layer. # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present diff --git a/tests/gnrc_sock_dns/Makefile b/tests/gnrc_sock_dns/Makefile index 7bdcdc41d1..c207e1052f 100644 --- a/tests/gnrc_sock_dns/Makefile +++ b/tests/gnrc_sock_dns/Makefile @@ -3,8 +3,8 @@ include ../Makefile.tests_common RIOTBASE ?= $(CURDIR)/../.. BOARD_INSUFFICIENT_MEMORY := chronos telosb nucleo-f042k6 nucleo-f031k6 \ - nucleo-f030r8 nucleo-l053r8 nucleo-l031k6 \ - stm32f0discovery z1 + nucleo-f030r8 nucleo-f303k8 nucleo-l053r8 \ + nucleo-l031k6 stm32f0discovery z1 USEMODULE += sock_dns USEMODULE += gnrc_sock_udp diff --git a/tests/lwip/Makefile b/tests/lwip/Makefile index a5c7dde0fb..8484bf2b0f 100644 --- a/tests/lwip/Makefile +++ b/tests/lwip/Makefile @@ -6,8 +6,9 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained BOARD_INSUFFICIENT_MEMORY := airfy-beacon hifive1 nrf6310 nucleo-f031k6 nucleo-f042k6 \ - nucleo-l031k6 nucleo-f030r8 nucleo-f334r8 nucleo-l053r8 \ - stm32f0discovery yunjia-nrf51822 + nucleo-l031k6 nucleo-f030r8 nucleo-f303k8 \ + nucleo-f334r8 nucleo-l053r8 stm32f0discovery \ + yunjia-nrf51822 # including lwip_ipv6_mld would currently break this test on at86rf2xx radios USEMODULE += lwip lwip_ipv6_autoconfig lwip_sock_ip lwip_netdev diff --git a/tests/lwip_sock_ip/Makefile b/tests/lwip_sock_ip/Makefile index 47e61565d2..af070ecae8 100644 --- a/tests/lwip_sock_ip/Makefile +++ b/tests/lwip_sock_ip/Makefile @@ -6,7 +6,8 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained BOARD_INSUFFICIENT_MEMORY = nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ - nucleo-f334r8 nucleo-l053r8 stm32f0discovery + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + stm32f0discovery LWIP_IPV4 ?= 0 diff --git a/tests/lwip_sock_tcp/Makefile b/tests/lwip_sock_tcp/Makefile index 09392ed1a4..e7a8e5abd0 100644 --- a/tests/lwip_sock_tcp/Makefile +++ b/tests/lwip_sock_tcp/Makefile @@ -6,7 +6,8 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained BOARD_INSUFFICIENT_MEMORY = nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ - nucleo-f334r8 nucleo-l053r8 stm32f0discovery + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + stm32f0discovery LWIP_IPV4 ?= 0 diff --git a/tests/lwip_sock_udp/Makefile b/tests/lwip_sock_udp/Makefile index 843a0a00c4..4e7f8ba3f4 100644 --- a/tests/lwip_sock_udp/Makefile +++ b/tests/lwip_sock_udp/Makefile @@ -6,7 +6,8 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ wsn430-v1_4 z1 jiminy-mega256rfr2 mega-xplained BOARD_INSUFFICIENT_MEMORY = nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ - nucleo-f334r8 nucleo-l053r8 stm32f0discovery + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + stm32f0discovery LWIP_IPV4 ?= 0 diff --git a/tests/nhdp/Makefile b/tests/nhdp/Makefile index aa07620dc1..4ace9cc494 100644 --- a/tests/nhdp/Makefile +++ b/tests/nhdp/Makefile @@ -4,7 +4,8 @@ BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb \ wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro arduino-uno \ arduino-duemilanove jiminy-mega256rfr2 mega-xplained BOARD_INSUFFICIENT_MEMORY := nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ - nucleo-f334r8 nucleo-l053r8 stm32f0discovery + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + stm32f0discovery USEMODULE += gnrc_ipv6 USEMODULE += gnrc_sock_udp diff --git a/tests/pkg_libcoap/Makefile b/tests/pkg_libcoap/Makefile index 7cd884fcb1..a2a6ae6e2f 100644 --- a/tests/pkg_libcoap/Makefile +++ b/tests/pkg_libcoap/Makefile @@ -5,7 +5,8 @@ BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro arduino-uno arduino-duemilanove \ jiminy-mega256rfr2 mega-xplained BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f031k6 nucleo-f042k6 \ - nucleo-l031k6 nucleo-f030r8 nucleo-f070rb nucleo-f334r8 nucleo-l053r8 \ + nucleo-l031k6 nucleo-f030r8 nucleo-f070rb \ + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 \ z1 diff --git a/tests/pkg_microcoap/Makefile b/tests/pkg_microcoap/Makefile index 47ed6831e4..b7b5479d0a 100644 --- a/tests/pkg_microcoap/Makefile +++ b/tests/pkg_microcoap/Makefile @@ -1,8 +1,8 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f031k6 nucleo-f042k6 \ - nucleo-l031k6 nucleo-f030r8 nucleo-l053r8 \ - stm32f0discovery telosb z1 + nucleo-f303k8 nucleo-l031k6 nucleo-f030r8 \ + nucleo-l053r8 stm32f0discovery telosb z1 # Include packages that pull up and auto-init the link layer. # NOTE: 6LoWPAN will be included if IEEE802.15.4 devices are present diff --git a/tests/posix_semaphore/Makefile b/tests/posix_semaphore/Makefile index 2e04b9735f..a23002e7f6 100644 --- a/tests/posix_semaphore/Makefile +++ b/tests/posix_semaphore/Makefile @@ -2,8 +2,8 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := chronos mbed_lpc1768 msb-430 msb-430h nrf6310 \ nucleo-f031k6 nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ - nucleo-f334r8 nucleo-l053r8 spark-core \ - stm32f0discovery yunjia-nrf51822 + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + spark-core stm32f0discovery yunjia-nrf51822 USEMODULE += fmt USEMODULE += posix_semaphore diff --git a/tests/pthread_rwlock/Makefile b/tests/pthread_rwlock/Makefile index ea1feac928..ffc279227c 100644 --- a/tests/pthread_rwlock/Makefile +++ b/tests/pthread_rwlock/Makefile @@ -12,7 +12,8 @@ USEMODULE += random BOARD_INSUFFICIENT_MEMORY += chronos msb-430 msb-430h nucleo-f031k6 \ nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ - nucleo-f334r8 nucleo-l053r8 stm32f0discovery + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + stm32f0discovery include $(RIOTBASE)/Makefile.include diff --git a/tests/slip/Makefile b/tests/slip/Makefile index a400ece498..d800f18d11 100644 --- a/tests/slip/Makefile +++ b/tests/slip/Makefile @@ -1,8 +1,8 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo-f031k6 nucleo-f042k6 \ - nucleo-l031k6 nucleo-f030r8 nucleo-f334r8 nucleo-l053r8 \ - stm32f0discovery + nucleo-l031k6 nucleo-f030r8 nucleo-f303k8 \ + nucleo-f334r8 nucleo-l053r8 stm32f0discovery BOARD_BLACKLIST += mips-malta diff --git a/tests/sntp/Makefile b/tests/sntp/Makefile index e23b14c549..7621932b87 100644 --- a/tests/sntp/Makefile +++ b/tests/sntp/Makefile @@ -2,8 +2,8 @@ include ../Makefile.tests_common BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f031k6 \ nucleo-f042k6 nucleo-l031k6 nucleo-f030r8 \ - nucleo-f334r8 nucleo-l053r8 stm32f0discovery \ - telosb wsn430-v1_3b wsn430-v1_4 z1 + nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \ + stm32f0discovery telosb wsn430-v1_3b wsn430-v1_4 z1 USEMODULE += sntp USEMODULE += gnrc_sock_udp diff --git a/tests/thread_cooperation/Makefile b/tests/thread_cooperation/Makefile index 019d281e21..893d1c0c59 100644 --- a/tests/thread_cooperation/Makefile +++ b/tests/thread_cooperation/Makefile @@ -1,9 +1,7 @@ include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := chronos \ - msb-430 \ - msb-430h \ - nucleo-f031k6 +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f031k6 \ + nucleo-f303k8 DISABLE_MODULE += auto_init -- GitLab