From ad599f724d90d3440261981fb346a2601c03bc4d Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ga=C3=ABtan=20Harter?= Date: Tue, 30 Apr 2019 21:58:46 +0200 Subject: [PATCH] tests/pkg_cc25519: increase timeout for arduino-mega2560 `arduino-mega2560` finishes the test in 170 seconds so set a bigger timeout. --- tests/pkg_c25519/tests/01-run.py | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/tests/pkg_c25519/tests/01-run.py b/tests/pkg_c25519/tests/01-run.py index f049f3179c..51f1df742f 100755 --- a/tests/pkg_c25519/tests/01-run.py +++ b/tests/pkg_c25519/tests/01-run.py @@ -14,7 +14,8 @@ import sys def testfunc(child): board = os.environ['BOARD'] # Increase timeout on "real" hardware - timeout = 20 if board is not 'native' else -1 + # 170 seconds on `arduino-mega2560` + timeout = 200 if board is not 'native' else -1 child.expect(r"OK \(2 tests\)", timeout=timeout)