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

Merge pull request #10952 from cladmi/pr/bug/testrunner/matching_local_echo

[BUG] testrunner matching local echo
This commit is contained in:
Juan I Carrano 2019-03-13 15:46:39 +01:00 committed by GitHub
commit 999ef3bc53
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -37,7 +37,7 @@ def find_exc_origin(exc_info):
def setup_child(timeout=10, spawnclass=pexpect.spawnu, env=None, logfile=None):
child = spawnclass("make term", env=env, timeout=timeout,
codec_errors='replace')
codec_errors='replace', echo=False)
# on many platforms, the termprog needs a short while to be ready...
time.sleep(MAKE_TERM_STARTED_DELAY)