1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-24 14:03:55 +01:00

Merge pull request #4972 from kaspar030/higher_testrunner_default_timeout

dist: tools: testrunner: increase default timeout to 10 secs
This commit is contained in:
Martine Lenders 2016-03-07 08:29:18 +01:00
commit 1a34075388

View File

@ -10,7 +10,7 @@
import os, signal, sys, subprocess
from pexpect import spawnu, TIMEOUT, EOF
def run(testfunc, timeout=5, echo=True):
def run(testfunc, timeout=10, echo=True):
env = os.environ.copy()
child = spawnu("make term", env=env, timeout=timeout)
if echo: