1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2025-12-27 23:41:18 +01:00

tests/pkg_qdsa: increase timeout

- Some boards take longer than the default timeout to finish the test,
  e.g. nucleo-l152re
This commit is contained in:
Francisco Molina 2019-08-05 14:59:55 +02:00
parent 1026fe395b
commit b2b915d217

View File

@ -9,9 +9,12 @@
import sys
from testrunner import run
# It takes ~11s on nucleo-l152re, so add some margin
TIMEOUT = 15
def testfunc(child):
child.expect('OK \(\d+ tests\)')
child.expect('OK \(\d+ tests\)', timeout=TIMEOUT)
if __name__ == "__main__":