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:
parent
c073e56b25
commit
ad599f724d
@ -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)
|
||||
|
||||
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user