From 7afacf97e78c2063def3614777d24838fce6f8de Mon Sep 17 00:00:00 2001
From: Dylan Laduranty <dylan.laduranty@mesotic.com>
Date: Mon, 21 Jan 2019 17:11:32 +0100
Subject: [PATCH] tests/*: add saml1*-xpro to BOARD_INSUFFICIENT_MEMORY

---
 tests/conn_can/Makefile        | 5 +++--
 tests/gnrc_netif/Makefile      | 4 ++--
 tests/gnrc_rpl_srh/Makefile    | 4 ++--
 tests/gnrc_sixlowpan/Makefile  | 4 ++--
 tests/gnrc_tcp_client/Makefile | 2 +-
 tests/gnrc_tcp_server/Makefile | 2 +-
 tests/lwip_sock_tcp/Makefile   | 2 +-
 tests/unittests/Makefile       | 4 ++++
 8 files changed, 16 insertions(+), 11 deletions(-)

diff --git a/tests/conn_can/Makefile b/tests/conn_can/Makefile
index 959231f6d5..ab746a0a4c 100644
--- a/tests/conn_can/Makefile
+++ b/tests/conn_can/Makefile
@@ -5,8 +5,9 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \
                              nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \
                              nucleo-f030r8 nucleo-f070rb nucleo-f072rb \
                              nucleo-f302r8 nucleo-f303re nucleo-f334r8 \
-                             nucleo-l053r8 stm32f0discovery telosb \
-                             waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
+                             nucleo-l053r8 saml10-xpro saml11-xpro \
+                             stm32f0discovery telosb waspmote-pro wsn430-v1_3b \
+                             wsn430-v1_4 z1
 
 CFLAGS += -DLOG_LEVEL=LOG_ALL
 
diff --git a/tests/gnrc_netif/Makefile b/tests/gnrc_netif/Makefile
index 8485d658db..769bed47cc 100644
--- a/tests/gnrc_netif/Makefile
+++ b/tests/gnrc_netif/Makefile
@@ -9,8 +9,8 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
                              nucleo-f103rb nucleo-f302r8 nucleo-f334r8 \
                              nucleo-l053r8 nucleo-l073rz nucleo-f031k6 \
                              nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 \
-                             opencm904 spark-core stm32f0discovery \
-                             telosb waspmote-pro \
+                             opencm904 saml10-xpro saml11-xpro spark-core \
+                             stm32f0discovery telosb waspmote-pro \
                              wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
 USEMODULE += embunit
diff --git a/tests/gnrc_rpl_srh/Makefile b/tests/gnrc_rpl_srh/Makefile
index 1231460471..ed6a27972a 100644
--- a/tests/gnrc_rpl_srh/Makefile
+++ b/tests/gnrc_rpl_srh/Makefile
@@ -7,8 +7,8 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \
                              nucleo-f030r8 nucleo-f031k6 nucleo-f042k6 \
                              nucleo-f070rb nucleo-f072rb nucleo-f303k8 \
                              nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \
-                             stm32f0discovery telosb thingy52 waspmote-pro \
-                             wsn430-v1_3b wsn430-v1_4 z1
+                             saml10-xpro saml11-xpro stm32f0discovery telosb \
+                             thingy52 waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
 # chronos, mips-malta, and ruuvitag boards don't support ethos
 BOARD_BLACKLIST := chronos mips-malta ruuvitag
 
diff --git a/tests/gnrc_sixlowpan/Makefile b/tests/gnrc_sixlowpan/Makefile
index 0f87212ec1..6346905cca 100644
--- a/tests/gnrc_sixlowpan/Makefile
+++ b/tests/gnrc_sixlowpan/Makefile
@@ -6,8 +6,8 @@ BOARD_INSUFFICIENT_MEMORY := arduino-duemilanove arduino-mega2560 arduino-uno \
                              nucleo-f031k6 nucleo-f042k6 nucleo-f070rb \
                              nucleo-f070rb nucleo-f072rb nucleo-f303k8 \
                              nucleo-f334r8 nucleo-l031k6 nucleo-l053r8 \
-                             stm32f0discovery telosb waspmote-pro \
-                             wsn430-v1_3b wsn430-v1_4 z1
+                             saml10-xpro saml11-xpro stm32f0discovery telosb \
+                             waspmote-pro wsn430-v1_3b wsn430-v1_4 z1
 
 # use IEEE 802.15.4 as link-layer protocol
 USEMODULE += netdev_ieee802154
diff --git a/tests/gnrc_tcp_client/Makefile b/tests/gnrc_tcp_client/Makefile
index c24ca1e671..4521cf4ebc 100644
--- a/tests/gnrc_tcp_client/Makefile
+++ b/tests/gnrc_tcp_client/Makefile
@@ -14,7 +14,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
                              msb-430 msb-430h nrf51dk nrf51dongle nrf6310 nucleo-f031k6 \
                              nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 nucleo-f030r8 \
                              nucleo-f070rb nucleo-f072rb nucleo-f302r8 nucleo-f334r8 nucleo-l053r8 \
-                             sb-430 sb-430h stm32f0discovery telosb \
+                             saml10-xpro saml11-xpro sb-430 sb-430h stm32f0discovery telosb \
                              waspmote-pro wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
 # Target Address, Target Port and number of Test Cycles
diff --git a/tests/gnrc_tcp_server/Makefile b/tests/gnrc_tcp_server/Makefile
index 989c9682d9..83dc0421c8 100644
--- a/tests/gnrc_tcp_server/Makefile
+++ b/tests/gnrc_tcp_server/Makefile
@@ -14,7 +14,7 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon arduino-duemilanove arduino-mega2560 \
                              microbit msb-430 msb-430h nrf51dk nrf51dongle nrf6310 nucleo-f031k6 \
                              nucleo-f042k6 nucleo-f303k8 nucleo-l031k6 nucleo-f030r8 \
                              nucleo-f070rb nucleo-f072rb nucleo-f302r8 nucleo-f334r8 nucleo-l053r8 \
-                             sb-430 sb-430h stm32f0discovery telosb \
+                             saml10-xpro saml11-xpro sb-430 sb-430h stm32f0discovery telosb \
                              waspmote-pro wsn430-v1_3b wsn430-v1_4 yunjia-nrf51822 z1
 
 # This has to be the absolute path to the RIOT base directory:
diff --git a/tests/lwip_sock_tcp/Makefile b/tests/lwip_sock_tcp/Makefile
index 499e61386e..987674102f 100644
--- a/tests/lwip_sock_tcp/Makefile
+++ b/tests/lwip_sock_tcp/Makefile
@@ -8,7 +8,7 @@ BOARD_BLACKLIST := arduino-uno arduino-duemilanove arduino-mega2560 chronos \
 BOARD_INSUFFICIENT_MEMORY = blackpill bluepill nucleo-f031k6 nucleo-f042k6 \
                             nucleo-l031k6 nucleo-f030r8 nucleo-f302r8 \
                             nucleo-f303k8 nucleo-f334r8 nucleo-l053r8 \
-                            stm32f0discovery
+                            saml10-xpro saml11-xpro stm32f0discovery
 
 LWIP_IPV4 ?= 0
 
diff --git a/tests/unittests/Makefile b/tests/unittests/Makefile
index 6c6ff4d4ef..87ce8102c8 100644
--- a/tests/unittests/Makefile
+++ b/tests/unittests/Makefile
@@ -58,6 +58,8 @@ BOARD_INSUFFICIENT_MEMORY := airfy-beacon \
                              remote-pa \
                              remote-reva \
                              remote-revb \
+                             saml10-xpro \
+                             saml11-xpro \
                              saml21-xpro \
                              samd21-xpro \
                              samr21-xpro \
@@ -170,6 +172,8 @@ ARM_CORTEX_M_BOARDS := airfy-beacon \
                        remote-pa \
                        remote-reva \
                        remote-revb \
+                       saml10-xpro \
+                       saml11-xpro \
                        samd21-xpro \
                        saml21-xpro \
                        samr21-xpro \
-- 
GitLab