2019-02-21 12:21:55 +01:00
|
|
|
DEVELHELP = 0
|
|
|
|
include ../Makefile.tests_common
|
|
|
|
|
|
|
|
USEMODULE += shell
|
|
|
|
|
2020-03-16 11:55:05 +01:00
|
|
|
# No need for test_utils_interactive_sync in this test since the test
|
|
|
|
# synchronizes by itself through `shellping` command.
|
|
|
|
DISABLE_MODULE += test_utils_interactive_sync
|
|
|
|
|
2020-06-09 11:07:52 +02:00
|
|
|
# include sys/test_utils/dummy_thread
|
|
|
|
USEMODULE += dummy_thread
|
|
|
|
|
2022-04-01 12:21:20 +02:00
|
|
|
# microbit qemu failing currently
|
|
|
|
TEST_ON_CI_BLACKLIST += microbit
|
|
|
|
|
2019-02-21 12:21:55 +01:00
|
|
|
include $(RIOTBASE)/Makefile.include
|
2021-02-04 12:46:26 +01:00
|
|
|
|
|
|
|
# Set the shell echo configuration via CFLAGS if not being controlled via Kconfig
|
|
|
|
# Disable shell echo and prompt to not have them in the way for testing
|
|
|
|
ifndef CONFIG_KCONFIG_USEMODULE_SHELL
|
|
|
|
CFLAGS += -DCONFIG_SHELL_NO_ECHO -DCONFIG_SHELL_NO_PROMPT
|
|
|
|
endif
|