]> code.ossystems Code Review - openembedded-core.git/commitdiff
oeqa/selftest/runcmd: Tweal test timeouts
authorRichard Purdie <richard.purdie@linuxfoundation.org>
Mon, 28 Jun 2021 14:24:07 +0000 (15:24 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Tue, 29 Jun 2021 21:21:50 +0000 (22:21 +0100)
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 <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/runcmd.py

index fa6113d7faa9404d4643a2f545e0f0a3ba718234..e9612389feccd720165facd1c23cbdc5b091e9fb 100644 (file)
@@ -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")