From: Steve Sakoman Date: Sun, 9 Jan 2022 22:07:26 +0000 (-1000) Subject: oeqa/selftest/cases/tinfoil.py: increase timeout 60->120s test_wait_event X-Git-Tag: yocto-3.1.14~21 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=f8e726479d5f4d89f9a7cf8babfe25fd5c73f66e;p=openembedded-core.git oeqa/selftest/cases/tinfoil.py: increase timeout 60->120s test_wait_event The test is timing out on fedora autobuilder workers Signed-off-by: Steve Sakoman --- diff --git a/meta/lib/oeqa/selftest/cases/tinfoil.py b/meta/lib/oeqa/selftest/cases/tinfoil.py index 0204537d49..4fcbe594c9 100644 --- a/meta/lib/oeqa/selftest/cases/tinfoil.py +++ b/meta/lib/oeqa/selftest/cases/tinfoil.py @@ -100,9 +100,9 @@ class TinfoilTests(OESelftestTestCase): eventreceived = False commandcomplete = False start = time.time() - # Wait for maximum 60s in total so we'd detect spurious heartbeat events for example + # Wait for maximum 120s in total so we'd detect spurious heartbeat events for example while (not (eventreceived == True and commandcomplete == True) - and (time.time() - start < 60)): + and (time.time() - start < 120)): # if we received both events (on let's say a good day), we are done event = tinfoil.wait_event(1) if event: