Skip to content

Commit

Permalink
tests: don't manually select native term
Browse files Browse the repository at this point in the history
  • Loading branch information
benpicco committed Dec 23, 2023
1 parent b166327 commit d8cc2ac
Show file tree
Hide file tree
Showing 9 changed files with 0 additions and 29 deletions.
4 changes: 0 additions & 4 deletions tests/build_system/test_tools/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ include ../Makefile.build_system_common

USEMODULE += shell

ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif

# 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
Expand Down
3 changes: 0 additions & 3 deletions tests/periph/rtt_min/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,9 +6,6 @@ USEMODULE += xtimer
FEATURES_REQUIRED += periph_rtt
DISABLE_MODULE += periph_init_rtt

ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif
RIOT_TERMINAL ?= socat

# microbit qemu lacks rtt
Expand Down
4 changes: 0 additions & 4 deletions tests/rust_libs/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,10 +5,6 @@ USEMODULE += shell_democommands

FEATURES_REQUIRED += rust_target

ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif

# Testing on stable to ensure that no nightly features are needed when Rust is
# pulled in through modules.
CARGO_CHANNEL = stable
Expand Down
3 changes: 0 additions & 3 deletions tests/sys/congure_reno/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ USEMODULE += shell_cmds_default

INCLUDES += -I$(CURDIR)

ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif
# Use a terminal that does not introduce extra characters into the stream.
RIOT_TERMINAL ?= socat

Expand Down
3 changes: 0 additions & 3 deletions tests/sys/congure_test/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,6 @@ USEMODULE += shell_cmds_default

INCLUDES += -I$(CURDIR)

ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif
# Use a terminal that does not introduce extra characters into the stream.
RIOT_TERMINAL ?= socat

Expand Down
3 changes: 0 additions & 3 deletions tests/sys/shell/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,6 @@ USEMODULE += app_metadata
USEMODULE += shell_cmds_default
USEMODULE += ps

ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif
# Use a terminal that does not introduce extra characters into the stream.
RIOT_TERMINAL ?= socat

Expand Down
3 changes: 0 additions & 3 deletions tests/sys/shell_ble/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,6 @@ TESTRUNNER_SHELL_SKIP_REBOOT = 1
TESTRUNNER_RESET_BOARD_ON_STARTUP = 0

ifneq (,$(filter term,$(MAKECMDGOALS)))
ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif
# Use a terminal that does not introduce extra characters into the stream.
RIOT_TERMINAL ?= socat
else ifneq (,$(filter test,$(MAKECMDGOALS)))
Expand Down
2 changes: 0 additions & 2 deletions tests/sys/shell_lock/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,6 @@ DISABLE_MODULE += test_utils_interactive_sync_shell
# for z1, socat doesn't work (unknown reason)
ifeq (z1, $(BOARD))
RIOT_TERMINAL ?= pyterm
else ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif

# Use a terminal that does not introduce extra characters into the stream.
Expand Down
4 changes: 0 additions & 4 deletions tests/turo/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@ include ../Makefile.tests_common
USEMODULE += test_utils_result_output
USEMODULE += shell

ifeq (native, $(BOARD))
RIOT_TERMINAL ?= native
endif

# Use a terminal that does not introduce extra characters into the stream.
RIOT_TERMINAL ?= socat

Expand Down

0 comments on commit d8cc2ac

Please sign in to comment.