]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest/virgl: drop the custom 30 sec timeout
authorAlexander Kanavin <alex.kanavin@gmail.com>
Mon, 19 Oct 2020 15:42:56 +0000 (17:42 +0200)
committerSteve Sakoman <steve@sakoman.com>
Wed, 21 Oct 2020 14:34:29 +0000 (04:34 -1000)
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]

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>
meta-selftest/lib/oeqa/runtime/cases/virgl.py

index c0abfd1b16128f56970439fd7b350c6156dcc965..cef1dcc3967e1d6e01ee4a614b62fb81cf7aa2b3 100644 (file)
@@ -13,6 +13,6 @@ class VirglTest(OERuntimeTestCase):
 
     @OETestDepends(['virgl.VirglTest.test_kernel_driver'])
     def test_kmscube(self):
-        status, output = self.target.run('kmscube', timeout=30)
+        status, output = self.target.run('kmscube')
         self.assertEqual(status, 0, "kmscube exited with non-zero status %d and output:\n%s" %(status, output))
         self.assertIn('renderer: "virgl"', output, "kmscube does not seem to use virgl:\n%s" %(output))