diff options
author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-28 15:24:07 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2021-06-29 22:21:56 +0100 |
commit | b6cbc055eb42f6d7e1cf9554b51842e2b89215d1 (patch) | |
tree | 4aca67162fd9c22827f8be3f18a1b076c4068098 /meta/lib | |
parent | b3e6b489bbf42cd37576f7f5127e0a88f4a3b2d3 (diff) | |
download | poky-b6cbc055eb42f6d7e1cf9554b51842e2b89215d1.tar.gz |
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]
(From OE-Core rev: fccd2ade0e345625ed9a4b74a7431b000ce2214f)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runcmd.py | 4 |
1 files changed, 2 insertions, 2 deletions
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): | |||
27 | 27 | ||
28 | # The delta is intentionally smaller than the timeout, to detect cases where | 28 | # The delta is intentionally smaller than the timeout, to detect cases where |
29 | # we incorrectly apply the timeout more than once. | 29 | # we incorrectly apply the timeout more than once. |
30 | TIMEOUT = 5 | 30 | TIMEOUT = 10 |
31 | DELTA = 3 | 31 | DELTA = 8 |
32 | 32 | ||
33 | def test_result_okay(self): | 33 | def test_result_okay(self): |
34 | result = runCmd("true") | 34 | result = runCmd("true") |