1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-28 16:01:18 +01:00

dist: tools: testrunner: increase default timeout to 10 secs

This commit is contained in:
Kaspar Schleiser 2016-03-07 01:56:39 +01:00
parent c72bae6dba
commit 18e55c6f67

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: