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 2c240cadf6)
This commit is contained in:
Gaëtan Harter 2018-05-02 10:31:50 +02:00
parent 0dc4ce1b46
commit fdb77a87a0
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -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__":