1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-25 06:23:53 +01:00

tests/pkg_cc25519: increase timeout for arduino-mega2560

`arduino-mega2560` finishes the test in 170 seconds so set a bigger timeout.
This commit is contained in:
Gaëtan Harter 2019-04-30 21:58:46 +02:00
parent c073e56b25
commit ad599f724d
No known key found for this signature in database
GPG Key ID: 76DF6BCF1B1F883B

View File

@ -14,7 +14,8 @@ import sys
def testfunc(child):
board = os.environ['BOARD']
# Increase timeout on "real" hardware
timeout = 20 if board is not 'native' else -1
# 170 seconds on `arduino-mega2560`
timeout = 200 if board is not 'native' else -1
child.expect(r"OK \(2 tests\)", timeout=timeout)