Merge pull request #6719 from Lotterleben/missing_test_targets

tests: Add missing test targets
This commit is contained in:
Martine Lenders 2017-03-11 11:41:23 +01:00 committed by GitHub
commit ee4b2ce331
3 changed files with 15 additions and 0 deletions

View File

@ -5,3 +5,8 @@ BOARD_INSUFFICIENT_MEMORY := stm32f0discovery weio nucleo-f030 nucleo32-f042 nuc
nucleo-l053
include $(RIOTBASE)/Makefile.include
test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`.
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -5,3 +5,8 @@ BOARD_INSUFFICIENT_MEMORY := stm32f0discovery weio nucleo-f030 nucleo32-f031 \
nucleo32-f042 nucleo-l053
include $(RIOTBASE)/Makefile.include
test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`.
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -4,3 +4,8 @@ include ../Makefile.tests_common
DISABLE_MODULE += auto_init
include $(RIOTBASE)/Makefile.include
test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`.
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/test_thread.py