From: Richard Purdie Date: Mon, 28 Jun 2021 14:24:07 +0000 (+0100) Subject: oeqa/selftest/runcmd: Tweal test timeouts X-Git-Tag: yocto-3.3.2~27 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=a6a83f9a25a2b4659640b35cb0bd9e3fcc6435ee;p=openembedded-core.git oeqa/selftest/runcmd: Tweal test timeouts Load on the autobuilder meant we see occasionaly timeout issues with these tests. Slightly increase the test timeouts to better reflect the real world timings we see. [YOCTO #14262] Signed-off-by: Richard Purdie (cherry picked from commit fccd2ade0e345625ed9a4b74a7431b000ce2214f) Signed-off-by: Anuj Mittal --- diff --git a/meta/lib/oeqa/selftest/cases/runcmd.py b/meta/lib/oeqa/selftest/cases/runcmd.py index fa6113d7fa..e9612389fe 100644 --- a/meta/lib/oeqa/selftest/cases/runcmd.py +++ b/meta/lib/oeqa/selftest/cases/runcmd.py @@ -27,8 +27,8 @@ class RunCmdTests(OESelftestTestCase): # The delta is intentionally smaller than the timeout, to detect cases where # we incorrectly apply the timeout more than once. - TIMEOUT = 5 - DELTA = 3 + TIMEOUT = 10 + DELTA = 8 def test_result_okay(self): result = runCmd("true")