From 6bd58beac507e1bb288dffe4ec0adb11d7e57a69 Mon Sep 17 00:00:00 2001 From: Angus Gratton Date: Fri, 3 Aug 2018 16:55:50 +1000 Subject: [PATCH] tiny-test-fw: Increase default expect timeout to 10 seconds Fix CI failures due to (for example) DHCP lease taking more than 5s to be negotiated. --- tools/tiny-test-fw/DUT.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/tiny-test-fw/DUT.py b/tools/tiny-test-fw/DUT.py index 0193cb6c70..091a961549 100644 --- a/tools/tiny-test-fw/DUT.py +++ b/tools/tiny-test-fw/DUT.py @@ -259,7 +259,7 @@ class BaseDUT(object): :param kwargs: extra args for DUT to create ports """ - DEFAULT_EXPECT_TIMEOUT = 5 + DEFAULT_EXPECT_TIMEOUT = 10 MAX_EXPECT_FAILURES_TO_SAVED = 10 LOG_THREAD = _LogThread()