summaryrefslogtreecommitdiffstats
path: root/meta-selftest
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2020-10-19 17:42:56 +0200
committerRichard Purdie <richard.purdie@linuxfoundation.org>2020-10-27 22:42:20 +0000
commit2083a3ad0779935560b15e6c61d40e81bbd01cae (patch)
tree43d63bbf748d432c122c3d106d6e9043003405b2 /meta-selftest
parente4fb5738380808ade7ea517b0af5d452cafc731b (diff)
downloadpoky-2083a3ad0779935560b15e6c61d40e81bbd01cae.tar.gz
selftest/virgl: drop the custom 30 sec timeout
This is occasionally reached on the AB; I am not sure if it is due to host overload, or guest malfunction, but let's use the default 300 sec and see if it helps. [YOCTO #14097] (From OE-Core rev: 4f77fe468f2ad225e2a89b5e3a4c84f0b93dab2a) Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org> (cherry picked from commit 93a0352e2e8539d109f6d3ddc0ed02b3b9256e86) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta-selftest')
-rw-r--r--meta-selftest/lib/oeqa/runtime/cases/virgl.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta-selftest/lib/oeqa/runtime/cases/virgl.py b/meta-selftest/lib/oeqa/runtime/cases/virgl.py
index c0abfd1b16..cef1dcc396 100644
--- a/meta-selftest/lib/oeqa/runtime/cases/virgl.py
+++ b/meta-selftest/lib/oeqa/runtime/cases/virgl.py
@@ -13,6 +13,6 @@ class VirglTest(OERuntimeTestCase):
13 13
14 @OETestDepends(['virgl.VirglTest.test_kernel_driver']) 14 @OETestDepends(['virgl.VirglTest.test_kernel_driver'])
15 def test_kmscube(self): 15 def test_kmscube(self):
16 status, output = self.target.run('kmscube', timeout=30) 16 status, output = self.target.run('kmscube')
17 self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output)) 17 self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output))
18 self.assertIn('renderer: "virgl"', output, "kmscube does not seem to use virgl:\n%s" %(output)) 18 self.assertIn('renderer: "virgl"', output, "kmscube does not seem to use virgl:\n%s" %(output))