From ac1bf94f6702fe1d88f9e9a7e5e7d16521e7830f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= <gaetan.harter@fu-berlin.de> Date: Thu, 26 Apr 2018 15:26:54 +0200 Subject: [PATCH] tests/float: increase timeout for wsn430 --- tests/float/tests/01-run.py | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/tests/float/tests/01-run.py b/tests/float/tests/01-run.py index 7147006321..e4ae7fca23 100755 --- a/tests/float/tests/01-run.py +++ b/tests/float/tests/01-run.py @@ -9,10 +9,13 @@ import os import sys +# It takes 35 seconds on wsn430, so add some margin +TIMEOUT = 45 + def testfunc(child): child.expect_exact("Testing floating point arithmetics...") - child.expect_exact("[SUCCESS]") + child.expect_exact("[SUCCESS]", timeout=TIMEOUT) if __name__ == "__main__": -- GitLab