tests/float: increase timeout for wsn430

This commit is contained in:
Gaëtan Harter 2018-04-26 15:26:54 +02:00
parent feadf68427
commit ac1bf94f67
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

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