diff options
| author | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-16 14:44:52 +0100 |
|---|---|---|
| committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-08-27 08:25:49 +0100 |
| commit | 188cf0a77de809906b7b4181a3931f76baf98d24 (patch) | |
| tree | 4634c7718d537c364a1cf7d88c77f5323803fe41 | |
| parent | 75c7726a20e1b42cd5770c2a5e3e117dcd74721e (diff) | |
| download | poky-188cf0a77de809906b7b4181a3931f76baf98d24.tar.gz | |
selftest/tinfoil: Increase wait event timeout
We're seeing this on the autobuilder when IO load is high. Increase
the timeout to give this a better chance of working out ok since
there is no particular reason we only need to wait 5s and searching
for files is IO sensitive.
[YOCTO #14001]
(From OE-Core rev: c0292d36dc79d0b1864eccddaa48b033c183d2dc)
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
(cherry picked from commit c847ed207795bc03f791ee5a3348fa5860c53e70)
Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
| -rw-r--r-- | meta/lib/oeqa/selftest/cases/tinfoil.py | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/meta/lib/oeqa/selftest/cases/tinfoil.py b/meta/lib/oeqa/selftest/cases/tinfoil.py index d1aa7b9afd..206168ed00 100644 --- a/meta/lib/oeqa/selftest/cases/tinfoil.py +++ b/meta/lib/oeqa/selftest/cases/tinfoil.py | |||
| @@ -100,8 +100,9 @@ class TinfoilTests(OESelftestTestCase): | |||
| 100 | eventreceived = False | 100 | eventreceived = False |
| 101 | commandcomplete = False | 101 | commandcomplete = False |
| 102 | start = time.time() | 102 | start = time.time() |
| 103 | # Wait for 5s in total so we'd detect spurious heartbeat events for example | 103 | # Wait for 10s in total so we'd detect spurious heartbeat events for example |
| 104 | while time.time() - start < 5: | 104 | # The test is IO load sensitive too |
| 105 | while time.time() - start < 10: | ||
| 105 | event = tinfoil.wait_event(1) | 106 | event = tinfoil.wait_event(1) |
| 106 | if event: | 107 | if event: |
| 107 | if isinstance(event, bb.command.CommandCompleted): | 108 | if isinstance(event, bb.command.CommandCompleted): |
