tests: remove setting TERMFLAGS= before running test

Remove setting TERMFLAGS to an empty value as its value will not be set by
`serial.inc.mk` as it is already defined.
This commit is contained in:
Gaëtan Harter 2017-10-19 19:38:41 +02:00
parent 8b00538854
commit e428038b04
14 changed files with 13 additions and 40 deletions

View File

@ -21,6 +21,4 @@ USEMODULE += cbor_semantic_tagging
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -8,6 +8,4 @@ USEMODULE += evtimer
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -8,6 +8,4 @@ USEMODULE += evtimer
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -32,6 +32,4 @@ include $(RIOTBASE)/Makefile.include
# This requires ENABLE_DEBUG in gnrc_ipv6.c to be 1 # This requires ENABLE_DEBUG in gnrc_ipv6.c to be 1
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -16,6 +16,4 @@ CFLAGS += -DTEST_SUITES
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -19,6 +19,4 @@ CFLAGS += -DTEST_SUITES
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -14,6 +14,4 @@ CFLAGS += -DTEST_SUITES
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -33,6 +33,4 @@ CFLAGS += -DTEST_SUITES
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -28,6 +28,4 @@ CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -292,7 +292,6 @@ def test_triple_send(board_group, application, env=None):
receiver.expect(u"00000000 DE AD BE EF") receiver.expect(u"00000000 DE AD BE EF")
if __name__ == "__main__": if __name__ == "__main__":
del os.environ['TERMFLAGS']
TestStrategy().execute([BoardGroup((Board("native", "tap0"), \ TestStrategy().execute([BoardGroup((Board("native", "tap0"), \
Board("native", "tap1")))], \ Board("native", "tap1")))], \
[test_ipv6_send, test_udpv6_send, test_tcpv6_send, [test_ipv6_send, test_udpv6_send, test_tcpv6_send,

View File

@ -7,6 +7,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f0
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -12,6 +12,4 @@ CFLAGS += -DDEVELHELP
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

@ -7,6 +7,4 @@ BOARD_INSUFFICIENT_MEMORY := nucleo32-f031 nucleo32-f042 nucleo32-l031 nucleo-f0
include $(RIOTBASE)/Makefile.include include $(RIOTBASE)/Makefile.include
test: test:
# `testrunner` calls `make term` recursively, results in duplicated `TERMFLAGS`. tests/01-run.py
# So clears `TERMFLAGS` before run.
TERMFLAGS= tests/01-run.py

View File

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