diff --git a/examples/dtls-echo/Makefile b/examples/dtls-echo/Makefile
index 58211491d1953af7b8e359faf6f6a56896e9a432..bb36b44e1474863b2a2b4b2d28e19a8ef1522e4a 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 7987689d590d37f8bacab84353a68d802b8ff285..dd9090a725d35614fc1fb1756f1a60cda265a150 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 eda838c387a21b1623bbde15694361aa9e45249f..5cbb925ecbd3d9552e75e674264618329a0b6c66 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 f34f729a9af18bba31fc3aa17c33b1dc2a84ae7c..93a37a0ebb2d6264094ea3c8c004cdf124fd379b 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 2dff6fd10a8a4850d695b314a759e2a777eef95c..823188642b4246c4a3f89598dd4bc910c4d0db4f 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 33e7061ba9301d1f8666f3cb649e98fba3cb279f..e624b94916a6381dfa8417914959c34da430d143 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 71f3f0872213e06d7eea686351c65c3407fa52a6..7164f612ea49fd5d0d0a4a14490178aa75636313 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 41716d359fd5f2e2e530365df344997c6ce57b5c..4e5911869b62dcad032f7838950560b73a31bc7d 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 aa00586ab7136f66c5d10ec74a0adc297b3441f1..d9e855ce848c9188f99d9f4c741a6d90337a9ec0 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 67b118261b9a5a699992e90d8ddda141c314192e..7270914829106d86b88f18d995a97e08f3131cbf 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 adade391e1fc87edf854ff6d3cb0e9d2c7dbe233..4800c93e1bbc8e4803668cd6c39a7c5f602a76b7 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 651e76ddffb16ff2e4c069f66a5705799a153a21..4e13f7abc53e67d3a48425057cb15c4d87837660 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 70b6b28f463a7747e68bc55e185cf4a7d8499f6a..ec87907ad253b6d944e4544d6d78d3ef7de61f40 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 8d8ae183f80c7aaba52c0388b7398fe8d07abff6..d4db309a05e3f849f877e70621757a24bafcf1a7 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 42cb9eac5d68be39e7e12ac0b0e073e26e90f1b0..48eb4b3754647e918509019b0d96f34b9f72c2a2 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 40497edc9bc19a1fd0130108637e64ff5e5b6335..ba0225b91a173161802b5e202d03f713639f6ec9 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 f2a4bdff77e57efaae1f25870882612008ac4732..ac432efb5ce83fb853373890b18bf5e6772181eb 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 4f08e2afcc02bdc2d07fac04b387a602770703fd..c73cba32d1e24cc2be7326536a4d726610bdcb61 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 cae72d5aaf289d8c486a9e6fff26356c811649cd..e2a6372069816c1be9b2f298b1a408ffeffbbbb4 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 40906109274471681371d4f5686db6f65cb8af26..afd188704dfeef45ad37a9c0b20a158e00d5ceb1 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 d77ec02b5e604b5c0bd60cd09e9f85e9bbda799d..674dc60aefcb0293b5ed19e1b540aae35e7a2735 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 143ea20f3b597819d5ed90f86fb71e4615d7bae1..644ef12c91dc463a2144cdd805a8a662a45ed005 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 40c80816861c0abbd58a9f4d284d452afb38b3fd..fddbb27f728b68f11133a58704787d95fbf04e38 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 73d5f056d5dca4c49e387af69a33cff2032606db..6003e2f05fdfd2e11cf49887cfeb7e853b883d3e 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 5333fbe0cb5a1c44c72873f529b6cdfa1bf70ba1..3a38bd68b220827c40d98a944dd57e43379e3066 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 7fc59af851bc3229f3a37ed6ac54b4604c2ac7cb..7edfd4162f8a757885a010f549ca8cc310903a18 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 a6b217453287d6e94790a6c383e2d6196e00ba69..8be36f605c1261dba04a6418a05a2e0419f0341b 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 71db7795a99f594eda1445ae8d959c0f75ba6a50..9670a76c2f66136c518d696bd327aea76a754e51 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 5f9adad5c154c744fbd0a65232ed4303abe21bc0..0414416c8d73a275401baf70bfc22bcf917027a8 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 36437d335a28dd7510a0931ab5b2536850956f92..adb0c240361b781f9c200f5a294c986a39e8ca87 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 1465828169c576e359071b30b62b5d657480d910..8f14282b41d63fedab896db9968163de64d3a077 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 d53455014fb28c54fab1742f117fc90a4d04eddd..74684f6a51375441862891a6b1ad58a93e33a216 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 03da7ca284cc6c199d60037065f920ed94cf82b6..acec4239a2fbc2a66e2211ba3e880d3c0be41940 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 48f187e251a86f85f697768468f73ec3f05743bd..1120d649d1ae6d797519e8ec87fe0c84489e9914 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 25724bd0cee8cccb85f87fa90d6519cb2e3ff897..65fecf2e31a03b2654d012a51ea609e96b7548d3 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 6f7863abb6e57c28a43fe373aa020d34bb951ee0..d56deac6d0729f4060eb66f632d121358d803eb7 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 8763ac7f5c7a579d96238a302b09fdef8813e482..83ffb7db20098636163b76beaa6edaf3fde0b725 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 d0eaf136a71a955862bed3bb7089c7d5e4ce4589..90224f06965b8f7573b5662a5ea9d993303e0f4d 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 7b7681b39a78e04812a9372f554254fd50bb49cd..8f59c6d5a2a287235af020902d3472c5020d816f 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 42ee52eff3d9cfb9cf6975b3922d64d88699b316..1920dcd112b20f7e65d001673c1fe4433ca158b5 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 d767e5f32a0da5b2ed715ac91e46d4f6a5eb7055..5eb9ad1420e20f2829245f3f4b69851f07ead498 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 863d9a1c58e6ba20857f7b88f8ca4f9e061446c6..df3e3bee39a07debfedfe876e805e1097707b89e 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 59dc130c5349378ce765bde460cad5a2d4319034..974df5027d5b62e3567b32795c3da47d0f5293dd 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 739f3e6991a32471eb38953236ec119d9101208d..ccfc3bb96f2f878ed5a2300ebb64a95a3418156b 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 5f4bd443ff1a177f25ad0f975753dbb2ebf7f504..c7961a45326e64065a6ab88e0cdab3d3151b760a 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