1
0
mirror of https://github.com/RIOT-OS/RIOT.git synced 2024-12-29 04:50:03 +01:00

tests/pkg_wolfcrypt-ed25519-verify: increase timeout for nrf51dk

This commit is contained in:
Alexandre Abadie 2021-01-28 13:40:54 +01:00
parent dfa10efef4
commit 6edb3a9e1b
No known key found for this signature in database
GPG Key ID: 1C919A403CAE1405

View File

@ -4,9 +4,14 @@ import sys
from testrunner import run
# This test needs some time to complete on small platforms. On nrf51dk, it
# takes >10s.
TIMEOUT = 20
def testfunc(child):
child.expect_exact("The signature is valid!")
if __name__ == "__main__":
sys.exit(run(testfunc))
sys.exit(run(testfunc, timeout=TIMEOUT))