2018-03-19 10:53:16 +01:00
|
|
|
DEVELHELP=0
|
2023-05-10 10:36:12 +02:00
|
|
|
include ../Makefile.sys_common
|
2014-01-10 16:21:35 +01:00
|
|
|
|
2019-03-05 14:21:44 +01:00
|
|
|
USEMODULE += app_metadata
|
2022-08-16 16:35:20 +02:00
|
|
|
USEMODULE += shell_cmds_default
|
2014-01-10 16:21:35 +01:00
|
|
|
USEMODULE += ps
|
2022-12-02 16:20:16 +01:00
|
|
|
USEMODULE += ztimer_msec
|
2014-01-10 16:21:35 +01:00
|
|
|
|
2019-08-15 17:12:54 +02:00
|
|
|
# Use a terminal that does not introduce extra characters into the stream.
|
|
|
|
RIOT_TERMINAL ?= socat
|
|
|
|
|
2019-03-05 14:21:44 +01:00
|
|
|
APP_SHELL_FMT ?= NONE
|
|
|
|
|
2022-04-01 12:21:20 +02:00
|
|
|
# microbit qemu failing currently
|
|
|
|
TEST_ON_CI_BLACKLIST += microbit
|
|
|
|
|
2022-12-02 16:20:16 +01:00
|
|
|
# requires #19005
|
|
|
|
TEST_ON_CI_BLACKLIST += native native64
|
|
|
|
|
2014-01-10 16:21:35 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
2020-07-30 13:22:26 +02:00
|
|
|
|
2022-11-11 23:00:58 +01:00
|
|
|
CFLAGS += '-DTHREAD_STACKSIZE_MAIN=(THREAD_STACKSIZE_SMALL+THREAD_EXTRA_STACKSIZE_PRINTF)'
|
|
|
|
|
2020-07-30 13:22:26 +02:00
|
|
|
# the test script skips tests if socat is not used
|
|
|
|
$(call target-export-variables,$(RIOT_TERMINAL),RIOT_TERMINAL)
|
2024-11-14 13:59:23 +01:00
|
|
|
|
|
|
|
# skip reboot for boards using highlevel_stdio that would disconnect during reboot
|
|
|
|
ifneq (,$(filter highlevel_stdio,$(FEATURES_USED)))
|
|
|
|
TESTRUNNER_SHELL_SKIP_REBOOT := 1
|
|
|
|
endif
|
|
|
|
$(call target-export-variables,$(TESTRUNNER_SHELL_SKIP_REBOOT),TESTRUNNER_SHELL_SKIP_REBOOT)
|