mirror of
https://github.com/RIOT-OS/RIOT.git
synced 2025-01-18 11:32:45 +01:00
b3cb076286
Check the interaction with a board through make term. It is using a shell without echo or prompt for reference. It currently checks that there is no local echo.
12 lines
255 B
Makefile
12 lines
255 B
Makefile
DEVELHELP = 0
|
|
include ../Makefile.tests_common
|
|
|
|
USEMODULE += shell
|
|
|
|
TEST_ON_CI_WHITELIST += all
|
|
|
|
# Disable shell echo and prompt to not have them in the way for testing
|
|
CFLAGS += -DSHELL_NO_ECHO=1 -DSHELL_NO_PROMPT=1
|
|
|
|
include $(RIOTBASE)/Makefile.include
|