From ebd5acc2fac2a0192a0b2ee6f9b00eaf4ae98c2b Mon Sep 17 00:00:00 2001 From: Francisco Molina Date: Thu, 19 Dec 2019 08:56:49 +0100 Subject: [PATCH] examples: set TESTRUNNER_RESET_AFTER_TERM for examples/%/tests --- examples/micropython/Makefile | 4 ++++ examples/suit_update/Makefile | 3 +++ 2 files changed, 7 insertions(+) diff --git a/examples/micropython/Makefile b/examples/micropython/Makefile index 1bd38786ea..d735268cfb 100644 --- a/examples/micropython/Makefile +++ b/examples/micropython/Makefile @@ -27,4 +27,8 @@ RIOT_TERMINAL ?= miniterm FEATURES_OPTIONAL += periph_adc FEATURES_OPTIONAL += periph_spi +# For now `examples/%/tests" still rely on the test applicaton being reset after +# a terminal is opened to synchronize. +TESTRUNNER_RESET_AFTER_TERM ?= 1 + include $(RIOTBASE)/Makefile.include diff --git a/examples/suit_update/Makefile b/examples/suit_update/Makefile index a2651c45db..b56747a7a6 100644 --- a/examples/suit_update/Makefile +++ b/examples/suit_update/Makefile @@ -85,6 +85,9 @@ endif # don't compile themselves and re-create signed images, thus add the required # files here so they will be submitted along with the test jobs. TEST_EXTRA_FILES += $(SLOT_RIOT_ELFS) $(SUIT_SEC) $(SUIT_PUB) +# For now `examples/%/tests" still rely on the test applicaton being reset after +# a terminal is opened to synchronize. +TESTRUNNER_RESET_AFTER_TERM ?= 1 include $(RIOTBASE)/Makefile.include