From fdb77a87a08adc1032217e4ae8d7d4d2e7547c27 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. (cherry picked from commit 2c240cadf645400db9f226e9bf973d0b41e6bbec) --- 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 46ec14b31..f7ab716c4 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__":