From 2c240cadf645400db9f226e9bf973d0b41e6bbec Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Wed, 2 May 2018 10:31:50 +0200 Subject: [PATCH] tests/libfixmath_unittests: increase timeout for samr21/iotlab-m3 On iotlab-m3 test duration was 80 seconds and 250 on samr21. --- tests/libfixmath_unittests/tests/01-run.py | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/tests/libfixmath_unittests/tests/01-run.py b/tests/libfixmath_unittests/tests/01-run.py index fffcbd2285..d5c4c49b21 100755 --- a/tests/libfixmath_unittests/tests/01-run.py +++ b/tests/libfixmath_unittests/tests/01-run.py @@ -9,9 +9,13 @@ import os import sys +# Float and print operations are slow on boards +# Got 80 iotlab-m3 and 250 on samr21-xpro +TIMEOUT = 300 + def testfunc(child): - child.expect('SUCCESS') + child.expect('SUCCESS', timeout=TIMEOUT) if __name__ == "__main__":