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

Merge pull request #7843 from haukepetersen/fix_test_unittestspexpecttimeout

test/unittests: set pexpect timeout to 60s
This commit is contained in:
Martine Lenders 2017-10-25 15:45:31 +02:00 committed by GitHub
commit 4d1a6c04b0

View File

@ -16,4 +16,4 @@ def testfunc(child):
child.expect(u"OK \\([0-9]+ tests\\)") child.expect(u"OK \\([0-9]+ tests\\)")
if __name__ == "__main__": if __name__ == "__main__":
sys.exit(testrunner.run(testfunc)) sys.exit(testrunner.run(testfunc, timeout=60))