Skip to content

Commit 1fece90

Browse files
committed
tests/sys/shell: skip reboot for boards using highlevel_stdio
1 parent 70aa1ec commit 1fece90

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

tests/sys/shell/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -23,3 +23,9 @@ CFLAGS += '-DTHREAD_STACKSIZE_MAIN=(THREAD_STACKSIZE_SMALL+THREAD_EXTRA_STACKSIZ
2323

2424
# the test script skips tests if socat is not used
2525
$(call target-export-variables,$(RIOT_TERMINAL),RIOT_TERMINAL)
26+
27+
# skip reboot for boards using highlevel_stdio that would disconnect during reboot
28+
ifneq (,$(filter highlevel_stdio,$(FEATURES_USED)))
29+
TESTRUNNER_SHELL_SKIP_REBOOT := 1
30+
endif
31+
$(call target-export-variables,$(TESTRUNNER_SHELL_SKIP_REBOOT),TESTRUNNER_SHELL_SKIP_REBOOT)

0 commit comments

Comments
 (0)