tests/pkg_wolfcrypt-ed25519-verify: increase timeout for nrf51dk
This commit is contained in:
parent
dfa10efef4
commit
6edb3a9e1b
@ -4,9 +4,14 @@ import sys
|
|||||||
from testrunner import run
|
from testrunner import run
|
||||||
|
|
||||||
|
|
||||||
|
# This test needs some time to complete on small platforms. On nrf51dk, it
|
||||||
|
# takes >10s.
|
||||||
|
TIMEOUT = 20
|
||||||
|
|
||||||
|
|
||||||
def testfunc(child):
|
def testfunc(child):
|
||||||
child.expect_exact("The signature is valid!")
|
child.expect_exact("The signature is valid!")
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
sys.exit(run(testfunc))
|
sys.exit(run(testfunc, timeout=TIMEOUT))
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user