1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 22:43:50 +01:00

testrunner: use 'cleanterm' for testing

Use a clean terminal without added decoration on the output for testing.
This commit is contained in:
Gaëtan Harter 2019-08-28 17:29:13 +02:00
parent d27a43f89a
commit c75d5120b4
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -36,7 +36,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,
child = spawnclass("make cleanterm", env=env, timeout=timeout,
codec_errors='replace', echo=False)
# on many platforms, the termprog needs a short while to be ready...