From ad0f0877cc91abc87fcc32a60a478a15a40bde80 Mon Sep 17 00:00:00 2001 From: Vincent Dupont <vincent@otakeys.com> Date: Mon, 13 Mar 2017 18:27:50 +0100 Subject: [PATCH] tests,examples: sort BOARD_INSUFFICIENT_MEMORY alphabetically --- examples/dtls-echo/Makefile | 12 +++++------ examples/emcute/Makefile | 6 +++--- examples/gcoap/Makefile | 6 +++--- examples/gnrc_border_router/Makefile | 14 ++++++------ examples/gnrc_networking/Makefile | 10 ++++----- examples/gnrc_tftp/Makefile | 12 +++++------ examples/microcoap_server/Makefile | 6 +++--- examples/nanocoap_server/Makefile | 4 ++-- examples/posix_sockets/Makefile | 10 ++++----- examples/riot_and_cpp/Makefile | 2 +- tests/bloom_bytes/Makefile | 3 ++- tests/conn_ip/Makefile | 7 +++--- tests/cpp11_condition_variable/Makefile | 2 +- tests/cpp11_mutex/Makefile | 2 +- tests/cpp11_thread/Makefile | 2 +- tests/driver_enc28j60/Makefile | 4 ++-- tests/driver_encx24j600/Makefile | 4 ++-- tests/driver_kw2xrf/Makefile | 2 +- tests/driver_xbee/Makefile | 4 ++-- tests/emb6/Makefile | 4 ++-- tests/gnrc_ipv6_ext/Makefile | 10 ++++----- tests/gnrc_sixlowpan/Makefile | 11 +++++----- tests/gnrc_sock_udp/Makefile | 2 +- tests/gnrc_tcp_client/Makefile | 15 ++++++------- tests/gnrc_tcp_server/Makefile | 15 ++++++------- tests/libfixmath_unittests/Makefile | 2 +- tests/lwip/Makefile | 6 +++--- tests/lwip_sock_ip/Makefile | 4 ++-- tests/lwip_sock_tcp/Makefile | 2 +- tests/lwip_sock_udp/Makefile | 2 +- tests/mutex_order/Makefile | 4 ++-- tests/nhdp/Makefile | 4 ++-- tests/pkg_libcoap/Makefile | 7 +++--- tests/posix_semaphore/Makefile | 8 +++---- tests/pthread_barrier/Makefile | 2 +- tests/pthread_condition_variable/Makefile | 2 +- tests/pthread_rwlock/Makefile | 8 +++---- tests/rmutex/Makefile | 4 ++-- tests/slip/Makefile | 5 +++-- tests/thread_cooperation/Makefile | 14 ++++++------ tests/thread_msg/Makefile | 2 +- tests/thread_msg_seq/Makefile | 2 +- tests/unittests/Makefile | 26 +++++++++++------------ tests/xtimer_drift/Makefile | 2 +- tests/xtimer_longterm/Makefile | 2 +- 45 files changed, 139 insertions(+), 138 deletions(-) diff --git a/examples/dtls-echo/Makefile b/examples/dtls-echo/Makefile index 58211491d1..bb36b44e14 100644 --- a/examples/dtls-echo/Makefile +++ b/examples/dtls-echo/Makefile @@ -13,12 +13,12 @@ BOARD_BLACKLIST := arduino-duemilanove arduino-mega2560 arduino-uno chronos \ z1 \ nrf52dk # see #6022 -BOARD_INSUFFICIENT_MEMORY := airfy-beacon nrf51dongle nrf6310 nucleo-f103 \ - nucleo-f334 pca10000 pca10005 spark-core \ - stm32f0discovery weio yunjia-nrf51822 nucleo-f072 \ - cc2650stk nucleo-f030 nucleo-f070 microbit \ - calliope-mini nucleo32-f042 nucleo32-f303 opencm904 \ - maple-mini nucleo32-f031 nucleo-l073 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon calliope-mini cc2650stk maple-mini \ + microbit nrf51dongle nrf6310 nucleo32-f031 \ + nucleo32-f042 nucleo32-f303 nucleo-f030 nucleo-f070 \ + nucleo-f072 nucleo-f103 nucleo-f334 nucleo-l053 \ + nucleo-l073 opencm904 pca10000 pca10005 spark-core \ + stm32f0discovery weio yunjia-nrf51822 # 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/examples/emcute/Makefile b/examples/emcute/Makefile index 7987689d59..dd9090a725 100644 --- a/examples/emcute/Makefile +++ b/examples/emcute/Makefile @@ -8,9 +8,9 @@ BOARD ?= native RIOTBASE ?= $(CURDIR)/../.. BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \ - chronos msb-430 msb-430h nucleo-f030 nucleo-l053 \ - nucleo-f070 nucleo-f072 nucleo-f334 nucleo32-f031 \ - nucleo32-f303 nucleo32-f042 stm32f0discovery telosb \ + chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \ + nucleo32-f303 nucleo-f030 nucleo-f070 nucleo-f072 \ + nucleo-f334 nucleo-l053 stm32f0discovery telosb \ waspmote-pro weio wsn430-v1_3b wsn430-v1_4 z1 # Include packages that pull up and auto-init the link layer. diff --git a/examples/gcoap/Makefile b/examples/gcoap/Makefile index eda838c387..5cbb925ecb 100644 --- a/examples/gcoap/Makefile +++ b/examples/gcoap/Makefile @@ -9,9 +9,9 @@ BOARD ?= native # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f030 nucleo-f334 \ - stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \ - z1 nucleo32-f042 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-f334 nucleo-l053 stm32f0discovery \ + telosb weio wsn430-v1_3b wsn430-v1_4 z1 # Must read nordic_softdevice_ble package before nanocoap package. However, # can't read it explicitly here because it is read later, as a dependency for diff --git a/examples/gnrc_border_router/Makefile b/examples/gnrc_border_router/Makefile index f34f729a9a..93a37a0ebb 100644 --- a/examples/gnrc_border_router/Makefile +++ b/examples/gnrc_border_router/Makefile @@ -7,13 +7,13 @@ BOARD ?= samr21-xpro # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := airfy-beacon cc2650stk maple-mini msb-430 msb-430h pca10000 \ - pca10005 nrf51dongle nrf6310 nucleo-f103 nucleo-f334 \ - spark-core stm32f0discovery telosb \ - weio wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 nucleo-f072 \ - nucleo-f030 nucleo-f070 microbit calliope-mini \ - nucleo32-f042 nucleo32-f303 opencm904 nucleo32-f031 \ - nucleo-l073 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon calliope-mini cc2650stk maple-mini \ + microbit msb-430 msb-430h nrf51dongle nrf6310 \ + nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo-f030 \ + nucleo-f070 nucleo-f072 nucleo-f103 nucleo-f334 \ + nucleo-l053 nucleo-l073 opencm904 pca10000 pca10005 \ + spark-core stm32f0discovery telosb weio wsn430-v1_3b \ + wsn430-v1_4 yunjia-nrf51822 z1 BOARD_BLACKLIST += mips-malta # No UART available. diff --git a/examples/gnrc_networking/Makefile b/examples/gnrc_networking/Makefile index 2dff6fd10a..823188642b 100644 --- a/examples/gnrc_networking/Makefile +++ b/examples/gnrc_networking/Makefile @@ -7,11 +7,11 @@ BOARD ?= native # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f103 nucleo-f334 \ - spark-core stm32f0discovery telosb weio \ - wsn430-v1_3b wsn430-v1_4 z1 nucleo-f072 nucleo-f030 \ - nucleo-f070 microbit calliope-mini nucleo32-f042 \ - nucleo32-f303 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := calliope-mini chronos microbit msb-430 msb-430h \ + nucleo32-f031 nucleo32-f042 nucleo32-f303 nucleo-f030 \ + nucleo-f070 nucleo-f072 nucleo-f103 nucleo-f334 \ + nucleo-l053 spark-core stm32f0discovery telosb weio \ + wsn430-v1_3b wsn430-v1_4 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/examples/gnrc_tftp/Makefile b/examples/gnrc_tftp/Makefile index 33e7061ba9..e624b94916 100644 --- a/examples/gnrc_tftp/Makefile +++ b/examples/gnrc_tftp/Makefile @@ -7,12 +7,12 @@ BOARD ?= native # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h nrf51dongle \ - nrf6310 nucleo-f103 nucleo-f334 pca10000 pca10005 \ - spark-core stm32f0discovery telosb weio wsn430-v1_3b \ - wsn430-v1_4 yunjia-nrf51822 z1 nucleo-f072 nucleo-f030 \ - nucleo-f070 microbit calliope-mini nucleo32-f042 \ - nucleo32-f303 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon calliope-mini chronos microbit msb-430 \ + msb-430h nrf51dongle nrf6310 nucleo32-f031 \ + nucleo32-f042 nucleo32-f303 nucleo-f030 nucleo-f070 \ + nucleo-f072 nucleo-f103 nucleo-f334 nucleo-l053 \ + pca10000 pca10005 spark-core stm32f0discovery telosb \ + weio 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/examples/microcoap_server/Makefile b/examples/microcoap_server/Makefile index 71f3f08722..7164f612ea 100644 --- a/examples/microcoap_server/Makefile +++ b/examples/microcoap_server/Makefile @@ -7,9 +7,9 @@ BOARD ?= native # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f030 nucleo32-f042 \ - pca10000 pca10005 stm32f0discovery telosb weio z1 \ - nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-l053 pca10000 pca10005 \ + stm32f0discovery telosb weio 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/examples/nanocoap_server/Makefile b/examples/nanocoap_server/Makefile index 41716d359f..4e5911869b 100644 --- a/examples/nanocoap_server/Makefile +++ b/examples/nanocoap_server/Makefile @@ -7,8 +7,8 @@ BOARD ?= native # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f030 nucleo32-f042 \ - stm32f0discovery telosb weio nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-l053 stm32f0discovery telosb weio # blacklist this until #6022 is sorted out BOARD_BLACKLIST := nrf52dk diff --git a/examples/posix_sockets/Makefile b/examples/posix_sockets/Makefile index aa00586ab7..d9e855ce84 100644 --- a/examples/posix_sockets/Makefile +++ b/examples/posix_sockets/Makefile @@ -7,11 +7,11 @@ BOARD ?= native # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h nrf51dongle nrf6310 \ - nucleo-f334 pca10000 pca10005 stm32f0discovery telosb weio \ - wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 nucleo-f072 \ - nucleo-f030 nucleo-f070 nucleo32-f042 nucleo32-f031 \ - nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos msb-430 msb-430h nrf51dongle \ + nrf6310 nucleo32-f031 nucleo32-f042 nucleo-f030 \ + nucleo-f070 nucleo-f072 nucleo-f334 nucleo-l053 \ + pca10000 pca10005 stm32f0discovery telosb weio \ + 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/examples/riot_and_cpp/Makefile b/examples/riot_and_cpp/Makefile index 67b118261b..7270914829 100644 --- a/examples/riot_and_cpp/Makefile +++ b/examples/riot_and_cpp/Makefile @@ -6,7 +6,7 @@ BOARD ?= native # stm32f0discovery objects are too big with ARM Embedded Toolchain v4.9.3 20141119 # (used currently by travis) -BOARD_INSUFFICIENT_MEMORY=stm32f0discovery weio nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY= nucleo32-f031 nucleo32-f042 stm32f0discovery weio # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. diff --git a/tests/bloom_bytes/Makefile b/tests/bloom_bytes/Makefile index adade391e1..4800c93e1b 100644 --- a/tests/bloom_bytes/Makefile +++ b/tests/bloom_bytes/Makefile @@ -1,7 +1,8 @@ APPLICATION = bloom_bytes include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h telosb wsn430-v1_3b \ + wsn430-v1_4 z1 USEMODULE += hashes USEMODULE += bloom diff --git a/tests/conn_ip/Makefile b/tests/conn_ip/Makefile index 651e76ddff..4e13f7abc5 100644 --- a/tests/conn_ip/Makefile +++ b/tests/conn_ip/Makefile @@ -3,9 +3,10 @@ include ../Makefile.tests_common RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f334 stm32f0discovery telosb \ - weio wsn430-v1_3b wsn430-v1_4 z1 nucleo-f030 nucleo-f070 \ - nucleo32-f042 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-f070 nucleo-f334 nucleo-l053 \ + stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \ + z1 USEMODULE += gnrc_netdev_default USEMODULE += auto_init_gnrc_netif diff --git a/tests/cpp11_condition_variable/Makefile b/tests/cpp11_condition_variable/Makefile index 70b6b28f46..ec87907ad2 100644 --- a/tests/cpp11_condition_variable/Makefile +++ b/tests/cpp11_condition_variable/Makefile @@ -8,7 +8,7 @@ include ../Makefile.tests_common # Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though. # Remove this line if Travis is upgraded to a different toolchain which does # not pull in all C++ locale code whenever exceptions are used. -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery spark-core nucleo-f334 +BOARD_INSUFFICIENT_MEMORY := nucleo-f334 spark-core stm32f0discovery # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. diff --git a/tests/cpp11_mutex/Makefile b/tests/cpp11_mutex/Makefile index 8d8ae183f8..d4db309a05 100644 --- a/tests/cpp11_mutex/Makefile +++ b/tests/cpp11_mutex/Makefile @@ -8,7 +8,7 @@ include ../Makefile.tests_common # Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though. # Remove this line if Travis is upgraded to a different toolchain which does # not pull in all C++ locale code whenever exceptions are used. -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery spark-core nucleo-f334 +BOARD_INSUFFICIENT_MEMORY := nucleo-f334 spark-core stm32f0discovery # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. diff --git a/tests/cpp11_thread/Makefile b/tests/cpp11_thread/Makefile index 42cb9eac5d..48eb4b3754 100644 --- a/tests/cpp11_thread/Makefile +++ b/tests/cpp11_thread/Makefile @@ -8,7 +8,7 @@ include ../Makefile.tests_common # Debian jessie libstdc++-arm-none-eabi-newlib-4.8.3-9+4 works fine, though. # Remove this line if Travis is upgraded to a different toolchain which does # not pull in all C++ locale code whenever exceptions are used. -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery spark-core nucleo-f334 +BOARD_INSUFFICIENT_MEMORY := nucleo-f334 spark-core stm32f0discovery # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. diff --git a/tests/driver_enc28j60/Makefile b/tests/driver_enc28j60/Makefile index 40497edc9b..ba0225b91a 100644 --- a/tests/driver_enc28j60/Makefile +++ b/tests/driver_enc28j60/Makefile @@ -3,8 +3,8 @@ include ../Makefile.tests_common FEATURES_REQUIRED = periph_spi periph_gpio -BOARD_INSUFFICIENT_MEMORY := msb-430h nucleo-f334 stm32f0discovery telosb \ - weio z1 msb-430 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo-f334 nucleo-l053 \ + stm32f0discovery telosb weio z1 USEMODULE += gnrc_netdev2 USEMODULE += gnrc_netdev_default diff --git a/tests/driver_encx24j600/Makefile b/tests/driver_encx24j600/Makefile index f2a4bdff77..ac432efb5c 100644 --- a/tests/driver_encx24j600/Makefile +++ b/tests/driver_encx24j600/Makefile @@ -3,8 +3,8 @@ include ../Makefile.tests_common FEATURES_REQUIRED = periph_spi periph_gpio -BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h stm32f0discovery telosb weio z1 \ - nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo-l053 stm32f0discovery telosb \ + weio z1 USEMODULE += gnrc_netdev2 USEMODULE += gnrc_netdev_default diff --git a/tests/driver_kw2xrf/Makefile b/tests/driver_kw2xrf/Makefile index 4f08e2afcc..c73cba32d1 100644 --- a/tests/driver_kw2xrf/Makefile +++ b/tests/driver_kw2xrf/Makefile @@ -3,7 +3,7 @@ include ../Makefile.tests_common FEATURES_REQUIRED = periph_spi periph_gpio -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery nucleo-f334 weio nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := nucleo-f334 nucleo-l053 stm32f0discovery weio USEMODULE += auto_init_gnrc_netif USEMODULE += gnrc_netdev_default diff --git a/tests/driver_xbee/Makefile b/tests/driver_xbee/Makefile index cae72d5aaf..e2a6372069 100644 --- a/tests/driver_xbee/Makefile +++ b/tests/driver_xbee/Makefile @@ -3,8 +3,8 @@ include ../Makefile.tests_common FEATURES_REQUIRED = periph_uart periph_gpio -BOARD_INSUFFICIENT_MEMORY := nucleo-f030 nucleo-f334 stm32f0discovery weio \ - nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-f334 \ + stm32f0discovery weio USEMODULE += xbee USEMODULE += gnrc_netif diff --git a/tests/emb6/Makefile b/tests/emb6/Makefile index 4090610927..afd188704d 100644 --- a/tests/emb6/Makefile +++ b/tests/emb6/Makefile @@ -7,8 +7,8 @@ FEATURES_REQUIRED = periph_gpio periph_spi # for at86rf231 RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h stm32f0discovery telosb weio z1 \ - wsn430-v1_3b wsn430-v1_4 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo-l053 stm32f0discovery telosb \ + weio wsn430-v1_3b wsn430-v1_4 z1 USEPKG += emb6 diff --git a/tests/gnrc_ipv6_ext/Makefile b/tests/gnrc_ipv6_ext/Makefile index d77ec02b5e..674dc60aef 100644 --- a/tests/gnrc_ipv6_ext/Makefile +++ b/tests/gnrc_ipv6_ext/Makefile @@ -5,11 +5,11 @@ include ../Makefile.tests_common # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 maple-mini msb-430h \ - nrf51dongle nrf6310 nucleo-f103 nucleo-f334 pca10000 pca10005 \ - spark-core stm32f0discovery telosb weio wsn430-v1_3b \ - wsn430-v1_4 yunjia-nrf51822 z1 nucleo-f030 nucleo32-f042 \ - nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \ + nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-f103 nucleo-f334 nucleo-l053 \ + pca10000 pca10005 spark-core stm32f0discovery telosb \ + weio 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_sixlowpan/Makefile b/tests/gnrc_sixlowpan/Makefile index 143ea20f3b..644ef12c91 100644 --- a/tests/gnrc_sixlowpan/Makefile +++ b/tests/gnrc_sixlowpan/Makefile @@ -5,11 +5,12 @@ include ../Makefile.tests_common # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h nrf51dongle \ - nrf6310 nucleo-f103 nucleo-f334 pca10000 pca10005 spark-core \ - stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \ - yunjia-nrf51822 z1 nucleo-f030 nucleo-f070 nucleo32-f042 \ - nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon chronos maple-mini msb-430 msb-430h \ + nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-f070 nucleo-f103 nucleo-f334 \ + nucleo-l053 pca10000 pca10005 spark-core \ + stm32f0discovery telosb weio 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_udp/Makefile b/tests/gnrc_sock_udp/Makefile index 40c8081686..fddbb27f72 100644 --- a/tests/gnrc_sock_udp/Makefile +++ b/tests/gnrc_sock_udp/Makefile @@ -3,7 +3,7 @@ include ../Makefile.tests_common RIOTBASE ?= $(CURDIR)/../.. -BOARD_INSUFFICIENT_MEMORY := nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 USEMODULE += gnrc_sock_check_reuse USEMODULE += gnrc_sock_udp diff --git a/tests/gnrc_tcp_client/Makefile b/tests/gnrc_tcp_client/Makefile index 73d5f056d5..6003e2f05f 100644 --- a/tests/gnrc_tcp_client/Makefile +++ b/tests/gnrc_tcp_client/Makefile @@ -10,14 +10,13 @@ TCP_TARGET_PORT ?= 80 TCP_TEST_CYCLES ?= 10 # Mark Boards with insufficient memory -BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560\ - arduino-uno calliope-mini chronos microbit sb-430\ - sb-430h nrf51dongle nrf6310 nucleo-f030\ - nucleo32-f042 nucleo-f070 nucleo-f072 nucleo32-f303\ - nucleo-f334 pca10000 pca10005 stm32f0discovery\ - telosb weio wsn430-v1_3b wsn430-v1_4\ - yunjia-nrf51822 z1 msb-430 msb-430h nucleo32-f031\ - nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \ + arduino-uno calliope-mini chronos microbit msb-430 \ + msb-430h nrf51dongle nrf6310 nucleo32-f031 \ + nucleo32-f042 nucleo32-f303 nucleo-f030 nucleo-f070 \ + nucleo-f072 nucleo-f334 nucleo-l053 pca10000 pca10005 \ + sb-430 sb-430h stm32f0discovery telosb weio \ + wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. diff --git a/tests/gnrc_tcp_server/Makefile b/tests/gnrc_tcp_server/Makefile index 5333fbe0cb..3a38bd68b2 100644 --- a/tests/gnrc_tcp_server/Makefile +++ b/tests/gnrc_tcp_server/Makefile @@ -8,14 +8,13 @@ PORT ?= tap0 TCP_LOCAL_PORT ?= 80 # Mark Boards with insufficient memory -BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560\ - arduino-uno calliope-mini chronos microbit sb-430\ - sb-430h nrf51dongle nrf6310 nucleo-f030\ - nucleo32-f042 nucleo-f070 nucleo-f072 nucleo32-f303\ - nucleo-f334 pca10000 pca10005 stm32f0discovery\ - telosb weio wsn430-v1_3b wsn430-v1_4\ - yunjia-nrf51822 z1 msb-430 msb-430h nucleo32-f031\ - nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \ + arduino-uno calliope-mini chronos microbit msb-430 \ + msb-430h nrf51dongle nrf6310 nucleo32-f031 \ + nucleo32-f042 nucleo32-f303 nucleo-f030 nucleo-f070 \ + nucleo-f072 nucleo-f334 nucleo-l053 pca10000 pca10005 \ + sb-430 sb-430h stm32f0discovery telosb weio \ + wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1 # This has to be the absolute path to the RIOT base directory: RIOTBASE ?= $(CURDIR)/../.. diff --git a/tests/libfixmath_unittests/Makefile b/tests/libfixmath_unittests/Makefile index 7fc59af851..7edfd4162f 100644 --- a/tests/libfixmath_unittests/Makefile +++ b/tests/libfixmath_unittests/Makefile @@ -8,7 +8,7 @@ BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove # The MSP boards don't feature round(), exp(), and log(), which are used in the unittests BOARD_BLACKLIST += chronos msb-430 msb-430h telosb wsn430-v1_3b wsn430-v1_4 z1 -BOARD_INSUFFICIENT_MEMORY := weio nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 weio USEMODULE += libfixmath-unittests diff --git a/tests/lwip/Makefile b/tests/lwip/Makefile index a6b2174532..8be36f605c 100644 --- a/tests/lwip/Makefile +++ b/tests/lwip/Makefile @@ -8,9 +8,9 @@ RIOTBASE ?= $(CURDIR)/../.. BOARD_BLACKLIST := arduino-mega2560 msb-430h telosb waspmote-pro z1 arduino-uno \ arduino-duemilanove msb-430 wsn430-v1_4 wsn430-v1_3b BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-mega2560 msb-430h nrf6310 \ - nucleo-f334 pca10005 stm32f0discovery telosb \ - weio yunjia-nrf51822 z1 nucleo-f030 nucleo-f072 \ - nucleo32-f031 nucleo-l053 + nucleo32-f031 nucleo-f030 nucleo-f072 nucleo-f334 \ + nucleo-l053 pca10005 stm32f0discovery telosb weio \ + yunjia-nrf51822 z1 # including lwip_ipv6_mld would currently break this test on at86rf2xx radios USEMODULE += lwip lwip_ipv6_autoconfig lwip_conn_ip lwip_netdev2 diff --git a/tests/lwip_sock_ip/Makefile b/tests/lwip_sock_ip/Makefile index 71db7795a9..9670a76c2f 100644 --- a/tests/lwip_sock_ip/Makefile +++ b/tests/lwip_sock_ip/Makefile @@ -6,8 +6,8 @@ include ../Makefile.tests_common BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ wsn430-v1_4 z1 -BOARD_INSUFFICIENT_MEMORY = nucleo-f030 nucleo32-f042 nucleo-f334 \ - stm32f0discovery weio nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY = nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-f334 \ + nucleo-l053 stm32f0discovery weio LWIP_IPV4 ?= 0 diff --git a/tests/lwip_sock_tcp/Makefile b/tests/lwip_sock_tcp/Makefile index 5f9adad5c1..0414416c8d 100644 --- a/tests/lwip_sock_tcp/Makefile +++ b/tests/lwip_sock_tcp/Makefile @@ -7,7 +7,7 @@ include ../Makefile.tests_common BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ wsn430-v1_4 z1 -BOARD_INSUFFICIENT_MEMORY = nucleo-f030 nucleo32-f031 nucleo32-f042 nucleo-f334 \ +BOARD_INSUFFICIENT_MEMORY = nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-f334 \ nucleo-l053 stm32f0discovery weio LWIP_IPV4 ?= 0 diff --git a/tests/lwip_sock_udp/Makefile b/tests/lwip_sock_udp/Makefile index 36437d335a..adb0c24036 100644 --- a/tests/lwip_sock_udp/Makefile +++ b/tests/lwip_sock_udp/Makefile @@ -7,7 +7,7 @@ include ../Makefile.tests_common BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \ msb-430 msb-430h telosb waspmote-pro wsn430-v1_3b \ wsn430-v1_4 z1 -BOARD_INSUFFICIENT_MEMORY = nucleo32-f042 nucleo-f030 nucleo32-f031 nucleo-f042 \ +BOARD_INSUFFICIENT_MEMORY = nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-f042 \ nucleo-f334 nucleo-l053 stm32f0discovery weio LWIP_IPV4 ?= 0 diff --git a/tests/mutex_order/Makefile b/tests/mutex_order/Makefile index 1465828169..8f14282b41 100644 --- a/tests/mutex_order/Makefile +++ b/tests/mutex_order/Makefile @@ -1,8 +1,8 @@ APPLICATION = mutex_order include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery weio nucleo-f030 nucleo32-f042 nucleo32-f031 \ - nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-l053 \ + stm32f0discovery weio include $(RIOTBASE)/Makefile.include diff --git a/tests/nhdp/Makefile b/tests/nhdp/Makefile index d53455014f..74684f6a51 100644 --- a/tests/nhdp/Makefile +++ b/tests/nhdp/Makefile @@ -4,8 +4,8 @@ include ../Makefile.tests_common BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb \ wsn430-v1_3b wsn430-v1_4 z1 waspmote-pro arduino-uno \ arduino-duemilanove -BOARD_INSUFFICIENT_MEMORY := nucleo-f334 stm32f0discovery weio nucleo-f030 \ - nucleo32-f042 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-f334 \ + nucleo-l053 stm32f0discovery weio USEMODULE += gnrc_ipv6 USEMODULE += gnrc_sock_udp diff --git a/tests/pkg_libcoap/Makefile b/tests/pkg_libcoap/Makefile index 03da7ca284..acec4239a2 100644 --- a/tests/pkg_libcoap/Makefile +++ b/tests/pkg_libcoap/Makefile @@ -4,9 +4,10 @@ include ../Makefile.tests_common # msp430 and avr have problems with int width and libcoaps usage of :x notation in structs BOARD_BLACKLIST := arduino-mega2560 chronos msb-430 msb-430h telosb wsn430-v1_3b \ wsn430-v1_4 z1 waspmote-pro arduino-uno arduino-duemilanove -BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo-f334 nucleo-f030 \ - stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 z1 \ - nucleo-f070 nucleo32-f042 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := chronos msb-430 msb-430h nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-f070 nucleo-f334 nucleo-l053 \ + stm32f0discovery telosb weio wsn430-v1_3b wsn430-v1_4 \ + z1 USEMODULE += gnrc_ipv6 USEMODULE += gnrc_sock_udp diff --git a/tests/posix_semaphore/Makefile b/tests/posix_semaphore/Makefile index 48f187e251..1120d649d1 100644 --- a/tests/posix_semaphore/Makefile +++ b/tests/posix_semaphore/Makefile @@ -1,10 +1,10 @@ APPLICATION = posix_semaphore include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h mbed_lpc1768 chronos stm32f0discovery \ - pca10000 pca10005 weio yunjia-nrf51822 nrf6310 spark-core \ - nucleo-f334 nucleo-f030 nucleo32-f042 nucleo32-f031 \ - nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := chronos mbed_lpc1768 msb-430 msb-430h nrf6310 \ + nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-f334 \ + nucleo-l053 pca10000 pca10005 spark-core \ + stm32f0discovery weio yunjia-nrf51822 USEMODULE += fmt USEMODULE += posix_semaphore diff --git a/tests/pthread_barrier/Makefile b/tests/pthread_barrier/Makefile index 25724bd0ce..65fecf2e31 100644 --- a/tests/pthread_barrier/Makefile +++ b/tests/pthread_barrier/Makefile @@ -6,7 +6,7 @@ BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove # arduino mega2560 uno duemilanove: unknown type name: clockid_t # exclude boards with insufficient memory -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery +BOARD_INSUFFICIENT_MEMORY := stm32f0discovery # Modules to include. USEMODULE += pthread diff --git a/tests/pthread_condition_variable/Makefile b/tests/pthread_condition_variable/Makefile index 6f7863abb6..d56deac6d0 100644 --- a/tests/pthread_condition_variable/Makefile +++ b/tests/pthread_condition_variable/Makefile @@ -4,7 +4,7 @@ include ../Makefile.tests_common BOARD_BLACKLIST := arduino-mega2560 waspmote-pro arduino-uno arduino-duemilanove # arduino mega2560 uno duemilanove: unknown type name: clockid_t -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 stm32f0discovery USEMODULE += posix USEMODULE += pthread diff --git a/tests/pthread_rwlock/Makefile b/tests/pthread_rwlock/Makefile index 8763ac7f5c..83ffb7db20 100644 --- a/tests/pthread_rwlock/Makefile +++ b/tests/pthread_rwlock/Makefile @@ -10,9 +10,9 @@ USEMODULE += random CFLAGS += -DNATIVE_AUTO_EXIT -BOARD_INSUFFICIENT_MEMORY += chronos mbed_lpc1768 msb-430 msb-430h stm32f0discovery \ - pca10000 pca10005 yunjia-nrf51822 spark-core nucleo-f334 \ - airfy-beacon nrf51dongle nrf6310 weio nucleo-f030 \ - nucleo32-f042 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY += airfy-beacon chronos mbed_lpc1768 msb-430 msb-430h \ + nrf51dongle nrf6310 nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-f334 nucleo-l053 pca10000 pca10005 \ + spark-core stm32f0discovery weio yunjia-nrf51822 include $(RIOTBASE)/Makefile.include diff --git a/tests/rmutex/Makefile b/tests/rmutex/Makefile index d0eaf136a7..90224f0696 100644 --- a/tests/rmutex/Makefile +++ b/tests/rmutex/Makefile @@ -1,8 +1,8 @@ APPLICATION = rmutex include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery weio nucleo-f030 nucleo32-f031 \ - nucleo32-f042 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo-f030 nucleo-l053 \ + stm32f0discovery weio include $(RIOTBASE)/Makefile.include diff --git a/tests/slip/Makefile b/tests/slip/Makefile index 7b7681b39a..8f59c6d5a2 100644 --- a/tests/slip/Makefile +++ b/tests/slip/Makefile @@ -1,8 +1,9 @@ APPLICATION = driver_slip include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo-f334 stm32f0discovery weio \ - nucleo-f030 nucleo32-f042 nucleo32-f031 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := msb-430 msb-430h nucleo32-f031 nucleo32-f042 \ + nucleo-f030 nucleo-f334 nucleo-l053 stm32f0discovery \ + weio BOARD_BLACKLIST += mips-malta diff --git a/tests/thread_cooperation/Makefile b/tests/thread_cooperation/Makefile index 42ee52eff3..1920dcd112 100644 --- a/tests/thread_cooperation/Makefile +++ b/tests/thread_cooperation/Makefile @@ -1,13 +1,13 @@ APPLICATION = thread_cooperation include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := cc2650stk chronos maple-mini msb-430 msb-430h \ - mbed_lpc1768 stm32f0discovery pca10000 pca10005 \ - yunjia-nrf51822 spark-core airfy-beacon nucleo-f103 \ - nucleo-f334 nrf51dongle nrf6310 weio nucleo-f072 \ - nucleo-f030 nucleo-f070 microbit calliope-mini \ - nucleo32-f042 nucleo32-f303 opencm904 nucleo32-f031 \ - nucleo-l073 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon calliope-mini cc2650stk chronos maple-mini \ + mbed_lpc1768 microbit msb-430 msb-430h nrf51dongle \ + nrf6310 nucleo32-f031 nucleo32-f042 nucleo32-f303 \ + nucleo-f030 nucleo-f070 nucleo-f072 nucleo-f103 \ + nucleo-f334 nucleo-l053 nucleo-l073 opencm904 pca10000 \ + pca10005 spark-core stm32f0discovery weio \ + yunjia-nrf51822 DISABLE_MODULE += auto_init diff --git a/tests/thread_msg/Makefile b/tests/thread_msg/Makefile index d767e5f32a..5eb9ad1420 100644 --- a/tests/thread_msg/Makefile +++ b/tests/thread_msg/Makefile @@ -1,7 +1,7 @@ APPLICATION = thread_msg include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 stm32f0discovery DISABLE_MODULE += auto_init diff --git a/tests/thread_msg_seq/Makefile b/tests/thread_msg_seq/Makefile index 863d9a1c58..df3e3bee39 100644 --- a/tests/thread_msg_seq/Makefile +++ b/tests/thread_msg_seq/Makefile @@ -1,7 +1,7 @@ APPLICATION = thread_msg_seq include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := stm32f0discovery nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 stm32f0discovery DISABLE_MODULE += auto_init diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile index 59dc130c53..974df5027d 100644 --- a/tests/unittests/Makefile +++ b/tests/unittests/Makefile @@ -1,20 +1,18 @@ APPLICATION = unittests include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := airfy-beacon cc2650stk chronos ek-lm4f120xl \ - maple-mini msb-430 msb-430h pca10000 \ - pca10005 spark-core stm32f0discovery stm32f3discovery \ - telosb wsn430-v1_3b wsn430-v1_4 z1 nucleo-f103 \ - nucleo-f334 yunjia-nrf51822 samr21-xpro \ - arduino-mega2560 airfy-beacon nrf51dongle nrf6310 \ - weio waspmote-pro nucleo-f072 arduino-uno \ - arduino-duemilanove sodaq-autonomo arduino-zero \ - nucleo-f030 nucleo-f070 nucleo-f091 pba-d-01-kw2x \ - saml21-xpro microbit calliope-mini limifrog-v1 \ - slwstk6220a ek-lm4f120xl stm32f3discovery \ - slwstk6220a nucleo32-f042 nucleo32-f303 opencm904 \ - seeeduino_arch-pro remote-pa remote-revb remote-reva \ - nucleo32-f031 nucleo-l073 nucleo-l053 +BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \ + arduino-uno arduino-zero calliope-mini cc2650stk \ + chronos ek-lm4f120xl limifrog-v1 maple-mini microbit \ + msb-430 msb-430h nrf51dongle nrf6310 nucleo32-f031 \ + nucleo32-f042 nucleo32-f303 nucleo-f030 nucleo-f070 \ + nucleo-f072 nucleo-f091 nucleo-f103 nucleo-f334 \ + nucleo-l053 nucleo-l073 opencm904 pba-d-01-kw2x \ + pca10000 pca10005 remote-pa remote-reva remote-revb \ + saml21-xpro samr21-xpro seeeduino_arch-pro slwstk6220a \ + sodaq-autonomo spark-core stm32f0discovery \ + stm32f3discovery telosb waspmote-pro weio wsn430-v1_3b \ + wsn430-v1_4 yunjia-nrf51822 z1 USEMODULE += embunit diff --git a/tests/xtimer_drift/Makefile b/tests/xtimer_drift/Makefile index 739f3e6991..ccfc3bb96f 100644 --- a/tests/xtimer_drift/Makefile +++ b/tests/xtimer_drift/Makefile @@ -1,7 +1,7 @@ APPLICATION = xtimer_drift include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 USEMODULE += xtimer diff --git a/tests/xtimer_longterm/Makefile b/tests/xtimer_longterm/Makefile index 5f4bd443ff..c7961a4532 100644 --- a/tests/xtimer_longterm/Makefile +++ b/tests/xtimer_longterm/Makefile @@ -1,7 +1,7 @@ APPLICATION = xtimer_longterm include ../Makefile.tests_common -BOARD_INSUFFICIENT_MEMORY := nucleo32-f042 nucleo32-f031 +BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 USEMODULE += xtimer -- GitLab