diff --git a/tests/conn_ip/Makefile b/tests/conn_ip/Makefile
index 30ee53231f038249a5bcb4c88c6bf588f45b3d88..e488478b72148eeeb3c5209e1fa78032312835a4 100644
--- a/tests/conn_ip/Makefile
+++ b/tests/conn_ip/Makefile
@@ -1,4 +1,5 @@
 APPLICATION = conn_ip
+include ../Makefile.tests_common
 
 BOARD ?= native
 
diff --git a/tests/cpp11_condition_variable/Makefile b/tests/cpp11_condition_variable/Makefile
index a3eabd35c8778f01b2fa1638a044bb074d3980aa..99416ba413eb670171da9d4689a086664ca61dd1 100644
--- a/tests/cpp11_condition_variable/Makefile
+++ b/tests/cpp11_condition_variable/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = cpp11_condition_variable
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/cpp11_mutex/Makefile b/tests/cpp11_mutex/Makefile
index d47b712036351d2cb2a03cf70142826da841a8f1..99e846f94a946cfcc7a0abb2d60d69c0cde790cd 100644
--- a/tests/cpp11_mutex/Makefile
+++ b/tests/cpp11_mutex/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = cpp11_mutex
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/cpp11_thread/Makefile b/tests/cpp11_thread/Makefile
index ba74d725ecf30d074436a92a95896b92cc43ba36..e93b7a3429ac6aceaf0c626dde74fe83f1f17ae3 100644
--- a/tests/cpp11_thread/Makefile
+++ b/tests/cpp11_thread/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = cpp11_thread
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/emb6/Makefile b/tests/emb6/Makefile
index 0d3d48bcd59e9b96fad59e64ecfc2f448e0ea4fe..24c98a57924ddbe9d3d21e9004903fd4dd38823b 100644
--- a/tests/emb6/Makefile
+++ b/tests/emb6/Makefile
@@ -1,9 +1,10 @@
 APPLICATION = emb6
+# overwrite board, do not set native as default
+BOARD ?= samr21-xpro
+include ../Makefile.tests_common
 
 FEATURES_REQUIRED = periph_gpio periph_spi  # for at86rf231
 
-BOARD ?= samr21-xpro
-
 RIOTBASE ?= $(CURDIR)/../..
 
 BOARD_INSUFFICIENT_MEMORY := msb-430h stm32f0discovery telosb weio z1
diff --git a/tests/fault_handler/Makefile b/tests/fault_handler/Makefile
index e340ac5eb768cccf8a26100ab403797fddd64fac..b82d4b873b30fb1593c10dab53472b61741828a0 100644
--- a/tests/fault_handler/Makefile
+++ b/tests/fault_handler/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = fault_handler
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/gnrc_ipv6_ext/Makefile b/tests/gnrc_ipv6_ext/Makefile
index ded570d0fd0a0f9c96883b8eadeb55c95248f0ab..468aafd3a288629cfd08c4dc68e4fe74637c333d 100644
--- a/tests/gnrc_ipv6_ext/Makefile
+++ b/tests/gnrc_ipv6_ext/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = gnrc_ipv6_ext
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/gnrc_sixlowpan/Makefile b/tests/gnrc_sixlowpan/Makefile
index 2996c313d8a54635c9278a790f82adb0124d82f5..8fc177864f6228867ab8d9c0d23c5b5368510ebe 100644
--- a/tests/gnrc_sixlowpan/Makefile
+++ b/tests/gnrc_sixlowpan/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = gnrc_sixlowpan
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/gnrc_sock_ip/Makefile b/tests/gnrc_sock_ip/Makefile
index 8c06d87bbe1755eaa53ae14d3e3d62b76e30e7a2..b7c2923ccad46a1906e1636e0c72453fec0a319b 100644
--- a/tests/gnrc_sock_ip/Makefile
+++ b/tests/gnrc_sock_ip/Makefile
@@ -1,4 +1,5 @@
 APPLICATION = gnrc_sock_ip
+include ../Makefile.tests_common
 
 BOARD ?= native
 
diff --git a/tests/gnrc_sock_udp/Makefile b/tests/gnrc_sock_udp/Makefile
index 317782b8fc85f78502706c6e87ef4d09c1446dc7..95c9ea24fa82b26692419f486c535fdb3ebd0a5b 100644
--- a/tests/gnrc_sock_udp/Makefile
+++ b/tests/gnrc_sock_udp/Makefile
@@ -1,4 +1,5 @@
 APPLICATION = gnrc_sock_udp
+include ../Makefile.tests_common
 
 BOARD ?= native
 
diff --git a/tests/lwip/Makefile b/tests/lwip/Makefile
index 69c3a6c03e1bad71389be63117036255526b0f96..54a03dbe7c746e934210eb3718ea7d1ac1a60023 100644
--- a/tests/lwip/Makefile
+++ b/tests/lwip/Makefile
@@ -1,6 +1,7 @@
 APPLICATION = lwip
-
+# overwrite board, do not set native as default
 BOARD ?= iotlab-m3
+include ../Makefile.tests_common
 
 RIOTBASE ?= $(CURDIR)/../..
 
diff --git a/tests/lwip_sock_ip/Makefile b/tests/lwip_sock_ip/Makefile
index 369b49d039b2bb5ca0e6c5fa57972c2bc59211fb..7076dca5fe4c386db54a71661bf00677c31e2276 100644
--- a/tests/lwip_sock_ip/Makefile
+++ b/tests/lwip_sock_ip/Makefile
@@ -1,5 +1,4 @@
 APPLICATION = lwip_sock_ip
-
 include ../Makefile.tests_common
 
 # lwIP's memory management doesn't seem to work on non 32-bit platforms at the
diff --git a/tests/malloc/Makefile b/tests/malloc/Makefile
index 8a57b0b309aacdaa018b927c8797b2c49f54e857..764e20bfc7c32ea8d4cc6e833ffb8d85db199559 100644
--- a/tests/malloc/Makefile
+++ b/tests/malloc/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = malloc
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/minimal/Makefile b/tests/minimal/Makefile
index 9d01d186e3811b1bdc9abdd1400e3b764a9c60de..97323d58b518e60ad75f4944a1af8d89b4f4e5ba 100644
--- a/tests/minimal/Makefile
+++ b/tests/minimal/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = minimal
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/msg_send_receive/Makefile b/tests/msg_send_receive/Makefile
index 93b32e37b92c93bffc0f697fa45db099089cbb00..e8e8a1bc7c22e31391005a5c15b85a45fb15fe48 100644
--- a/tests/msg_send_receive/Makefile
+++ b/tests/msg_send_receive/Makefile
@@ -1,6 +1,5 @@
 # name of your application
 APPLICATION = msg_send_receive
-
 include ../Makefile.tests_common
 
 include $(RIOTBASE)/Makefile.include
diff --git a/tests/od/Makefile b/tests/od/Makefile
index 72371e77bf870ec72ef6c87dbf5be8a0b96ced00..7f2e09fa4bdd5a279f08f2669ec37346b341c89d 100644
--- a/tests/od/Makefile
+++ b/tests/od/Makefile
@@ -1,5 +1,6 @@
 # name of your application
 APPLICATION = od
+include ../Makefile.tests_common
 
 # If no BOARD is found in the environment, use this default:
 BOARD ?= native
diff --git a/tests/periph_pwm/Makefile b/tests/periph_pwm/Makefile
index 237aa5c4b30d1609363f03da6c72890f851fea48..2cd25599d0675aafe94ff9e51ab5cf06444a4dfe 100644
--- a/tests/periph_pwm/Makefile
+++ b/tests/periph_pwm/Makefile
@@ -1,4 +1,4 @@
-export APPLICATION = periph_pwm
+APPLICATION = periph_pwm
 include ../Makefile.tests_common
 
 FEATURES_REQUIRED = periph_pwm
diff --git a/tests/periph_rtt/Makefile b/tests/periph_rtt/Makefile
index 869af1510c36119dafa902ccb4543f7aaef0bf3d..013cbacdd59bb9c56a44a391f779aba222557f19 100644
--- a/tests/periph_rtt/Makefile
+++ b/tests/periph_rtt/Makefile
@@ -1,4 +1,4 @@
-export APPLICATION = periph_rtt
+APPLICATION = periph_rtt
 include ../Makefile.tests_common
 
 FEATURES_REQUIRED = periph_rtt
diff --git a/tests/periph_spi/Makefile b/tests/periph_spi/Makefile
index cdbf2cc8dc0c172f1b57d60afb5f703495450207..7f3aae67c4c8998aa0e7d95c80b975d41804d898 100644
--- a/tests/periph_spi/Makefile
+++ b/tests/periph_spi/Makefile
@@ -1,4 +1,4 @@
-export APPLICATION = periph_spi
+APPLICATION = periph_spi
 include ../Makefile.tests_common
 
 FEATURES_REQUIRED = periph_spi
diff --git a/tests/periph_timer/Makefile b/tests/periph_timer/Makefile
index f5458de1dd1a061d89024c7da88ebb5c264afb3a..9ae3366ca31d709e9cc7c4da3cf598b12697da0b 100644
--- a/tests/periph_timer/Makefile
+++ b/tests/periph_timer/Makefile
@@ -1,4 +1,4 @@
-export APPLICATION = periph_timer
+APPLICATION = periph_timer
 include ../Makefile.tests_common
 
 FEATURES_REQUIRED = periph_timer
diff --git a/tests/periph_uart/Makefile b/tests/periph_uart/Makefile
index 90d11466bef750b48abc7dd1f1c378cc0a6b3cdb..d23b7b05ff14fa4f52d71d1b0e2e5e4d243499fb 100644
--- a/tests/periph_uart/Makefile
+++ b/tests/periph_uart/Makefile
@@ -1,4 +1,4 @@
-export APPLICATION = periph_uart
+APPLICATION = periph_uart
 include ../Makefile.tests_common
 
 FEATURES_REQUIRED = periph_uart