summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2022-01-09 12:07:26 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-01-22 17:56:52 +0000
commitee9345f86406e4d27f3337249ac6d099e77f9bb8 (patch)
treef44c2133fdbbfc8d37f4a8230b5bba52bab44e92 /meta/lib/oeqa/selftest/cases
parent34ba446157fda2c8cfb62d9f073e4cbbd65d3c02 (diff)
downloadpoky-ee9345f86406e4d27f3337249ac6d099e77f9bb8.tar.gz
oeqa/selftest/cases/tinfoil.py: increase timeout 60->120s test_wait_event
The test is timing out on fedora autobuilder workers (From OE-Core rev: f8e726479d5f4d89f9a7cf8babfe25fd5c73f66e) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r--meta/lib/oeqa/selftest/cases/tinfoil.py4
1 files changed, 2 insertions, 2 deletions
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):
100 eventreceived = False 100 eventreceived = False
101 commandcomplete = False 101 commandcomplete = False
102 start = time.time() 102 start = time.time()
103 # Wait for maximum 60s in total so we'd detect spurious heartbeat events for example 103 # Wait for maximum 120s in total so we'd detect spurious heartbeat events for example
104 while (not (eventreceived == True and commandcomplete == True) 104 while (not (eventreceived == True and commandcomplete == True)
105 and (time.time() - start < 60)): 105 and (time.time() - start < 120)):
106 # if we received both events (on let's say a good day), we are done 106 # if we received both events (on let's say a good day), we are done
107 event = tinfoil.wait_event(1) 107 event = tinfoil.wait_event(1)
108 if event: 108 if event: