summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard Purdie <richard.purdie@linuxfoundation.org>2023-07-27 17:25:50 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-07-29 08:34:35 +0100
commit94b9bc0b04431518e6ae80a8c2ed7b82a7346d6e (patch)
tree8957c69aea8444cc2a91dbfb9834b9b8eb730a28
parentf35a017cf8df7dbed8e758340869b3fbab83cde3 (diff)
downloadpoky-94b9bc0b04431518e6ae80a8c2ed7b82a7346d6e.tar.gz
oeqa/runtime/ltp: Increase ltp test output timeout
On our slower arm server, the tests currently timeout leading to inconsistent test results. Increase the timeout to avoid this and aim to make the test results consistent. (From OE-Core rev: 9a8b49208f3c99e184eab426360b137bc773aa31) Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/runtime/cases/ltp.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/runtime/cases/ltp.py b/meta/lib/oeqa/runtime/cases/ltp.py
index 29c26d7d32..13a4f84ac0 100644
--- a/meta/lib/oeqa/runtime/cases/ltp.py
+++ b/meta/lib/oeqa/runtime/cases/ltp.py
@@ -71,7 +71,7 @@ class LtpTest(LtpTestBase):
71 cmd = '/opt/ltp/runltp -f %s -q -r /opt/ltp -l /opt/ltp/results/%s -I 1 -d /opt/ltp' % (ltp_group, ltp_group) 71 cmd = '/opt/ltp/runltp -f %s -q -r /opt/ltp -l /opt/ltp/results/%s -I 1 -d /opt/ltp' % (ltp_group, ltp_group)
72 72
73 starttime = time.time() 73 starttime = time.time()
74 (status, output) = self.target.run(cmd) 74 (status, output) = self.target.run(cmd, timeout=1200)
75 endtime = time.time() 75 endtime = time.time()
76 76
77 # Write the console log to disk for convenience 77 # Write the console log to disk for convenience