Merge pull request #7766 from cladmi/pr/test_lwip_native

tests/lwip: only enable test for native board
This commit is contained in:
Martine Lenders 2017-10-24 13:09:09 +02:00 committed by GitHub
commit 1cad16bfaf

View File

@ -27,5 +27,8 @@ endif
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
# Test only implemented for native
ifeq ($(BOARD),native)
test: test:
./tests/01-run.py ./tests/01-run.py
endif