From 6aae6a0caee074b65f4eb935677f207bf9acb841 Mon Sep 17 00:00:00 2001 From: Matt Spinler Date: Fri, 7 Feb 2020 12:46:07 -0600 Subject: PEL: Increase host full timeout val in test The host notifier testcase depends on catching the host full retry timer after it starts but before it trips. Occasionally in CI when a lot of of work is being done in parallel this wasn't happening so the testcase would fail. Increase the timeout value from 20ms to 400ms which is hopefully enough. Signed-off-by: Matt Spinler Change-Id: Id8d1c7a800f9da932d85da7ed3bf6d6e5400a24e --- test/openpower-pels/mocks.hpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/openpower-pels/mocks.hpp b/test/openpower-pels/mocks.hpp index e00e006..8b055dd 100644 --- a/test/openpower-pels/mocks.hpp +++ b/test/openpower-pels/mocks.hpp @@ -109,7 +109,7 @@ class MockHostInterface : public HostInterface */ virtual std::chrono::milliseconds getHostFullRetryDelay() const override { - return std::chrono::milliseconds(20); + return std::chrono::milliseconds(400); } /** -- cgit v1.2.1