From 7692da95661c1dfc2cbd0f8838348866504b1590 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Thu, 19 Oct 2017 14:36:57 +0200 Subject: [PATCH] tests/lwip: only enable test for native board Other board are not supported in 01-run.py. --- tests/lwip/Makefile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/tests/lwip/Makefile b/tests/lwip/Makefile index 1aaefebf6c..b895726f9b 100644 --- a/tests/lwip/Makefile +++ b/tests/lwip/Makefile @@ -27,5 +27,8 @@ endif include $(RIOTBASE)/Makefile.include +# Test only implemented for native +ifeq ($(BOARD),native) test: ./tests/01-run.py +endif