diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2020-10-19 17:42:56 +0200 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2020-10-20 11:11:46 +0100 |
commit | 6a6dbae43dd32c129009a0b4ea74ca090499cba2 (patch) | |
tree | 9060c084563450fdd89af17f7e0e280fba9f913e /meta-selftest | |
parent | 16200010efaf302cc6692542444c1ca1c395ad88 (diff) | |
download | poky-6a6dbae43dd32c129009a0b4ea74ca090499cba2.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: 93a0352e2e8539d109f6d3ddc0ed02b3b9256e86)
Signed-off-by: Alexander Kanavin <alex.kanavin@gmail.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.py | 2 |
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 892c19c848..144decdd6b 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)) |