tests/pkg_c25519: increase test timeout (z1 needs >5min)

This commit is contained in:
Kaspar Schleiser 2020-07-30 13:44:26 +02:00
parent 8afaf11bb5
commit 480ef3225d

View File

@ -17,7 +17,8 @@ from testrunner import TIMEOUT as DEFAULT_TIMEOUT
BOARD = os.environ['BOARD'] BOARD = os.environ['BOARD']
# Increase timeout on "real" hardware # Increase timeout on "real" hardware
# 170 seconds on `arduino-mega2560` # 170 seconds on `arduino-mega2560`
TIMEOUT = 200 if BOARD != 'native' else DEFAULT_TIMEOUT # ~300 seconds on `z1`
TIMEOUT = 320 if BOARD != 'native' else DEFAULT_TIMEOUT
if __name__ == "__main__": if __name__ == "__main__":