From: Yi Fan Yu Date: Thu, 21 Jan 2021 22:36:39 +0000 (-0500) Subject: oeqa/selftest/cases/tinfoil.py: increase timeout 10->60s test_wait_event X-Git-Tag: 2020-04.6-dunfell~55 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=cbc72203c82e56ebf4a6a685fbeb27679ed9a2e0;p=openembedded-core.git oeqa/selftest/cases/tinfoil.py: increase timeout 10->60s test_wait_event The test would timeout on autobuilders. This patch increases the timeout to 60s The test will now also exit as soon as we receive the 2 expected events Expected runtime is around 1s if successful Bug 14158 Signed-off-by: Yi Fan Yu Signed-off-by: Richard Purdie (cherry picked from commit be02aa9283f805de718badd5ea12c4968da8774f) Signed-off-by: Steve Sakoman --- diff --git a/meta/lib/oeqa/selftest/cases/tinfoil.py b/meta/lib/oeqa/selftest/cases/tinfoil.py index 206168ed00..a51c6048d3 100644 --- a/meta/lib/oeqa/selftest/cases/tinfoil.py +++ b/meta/lib/oeqa/selftest/cases/tinfoil.py @@ -100,9 +100,11 @@ class TinfoilTests(OESelftestTestCase): eventreceived = False commandcomplete = False start = time.time() - # Wait for 10s in total so we'd detect spurious heartbeat events for example + # Wait for maximum 60s in total so we'd detect spurious heartbeat events for example # The test is IO load sensitive too - while time.time() - start < 10: + while (not (eventreceived == True and commandcomplete == True) + and (time.time() - start < 60)): + # if we received both events (on let's say a good day), we are done event = tinfoil.wait_event(1) if event: if isinstance(event, bb.command.CommandCompleted):