1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

boards: common: stdio_cdc_acm: let tests wait a bit for serial port

This commit is contained in:
Martine Lenders 2023-01-11 12:54:54 +01:00
parent 75c909b813
commit b00b286a1d
No known key found for this signature in database
GPG Key ID: 2134D77A5336DD80

View File

@ -8,4 +8,9 @@ ifeq (,$(filter-out stdio_cdc_acm,$(filter stdio_% slipdev_stdio,$(USEMODULE))))
USEMODULE += stdio_cdc_acm
endif
FEATURES_REQUIRED += highlevel_stdio
# Enforce tests to wait a bit for the serial port after reset
TERM_DELAY ?= 2
TESTRUNNER_CONNECT_DELAY ?= $(TERM_DELAY)
$(call target-export-variables,test,TESTRUNNER_CONNECT_DELAY)
endif