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

tests/pkg_wolfssl: Increase timeout for bench-test

10 seconds are not enough, each operation takes one second, and we do
more than 10. 20 seems to be a sane value.
This commit is contained in:
Flole998 2023-03-01 00:24:32 +00:00
parent abf5eddaa6
commit 997af7afe2

View File

@ -15,7 +15,7 @@ BOARD = os.environ.get("BOARD", "native")
TEST_TIMEOUT = 600 if BOARD != 'native' else DEFAULT_TIMEOUT
# ECDSA 256 takes +30s on samr21-xpro
# ECDSA 256 takes +40s on nrf51dk
BENCH_TIMEOUT = 40 if BOARD != 'native' else DEFAULT_TIMEOUT
BENCH_TIMEOUT = 40 if BOARD != 'native' else 20
def _wait_for_test(child):