Skip to content
Snippets Groups Projects
Commit 0ea00d93 authored by Alexandre Abadie's avatar Alexandre Abadie
Browse files

tests/pkg_libcose: increase timeout of autotest

On a microbit (nrf51) the autotest takes around 4 minutes to complete.
parent 6886ca54
No related branches found
No related tags found
No related merge requests found
...@@ -11,10 +11,15 @@ import sys ...@@ -11,10 +11,15 @@ import sys
from testrunner import run from testrunner import run
# on real hardware, this test application can take several minutes to
# complete (~4min on microbit)
HW_TIMEOUT = 300
def testfunc(child): def testfunc(child):
board = os.environ['BOARD'] board = os.environ['BOARD']
# Increase timeout on "real" hardware # Increase timeout on "real" hardware
timeout = 120 if board is not 'native' else -1 timeout = HW_TIMEOUT if board is not 'native' else -1
child.expect('OK \(\d+ tests\)', timeout=timeout) child.expect('OK \(\d+ tests\)', timeout=timeout)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment