]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest: skip virgl test on centos 8 entirely
authorSteve Sakoman <steve@sakoman.com>
Thu, 9 Dec 2021 17:46:53 +0000 (07:46 -1000)
committerAnuj Mittal <anuj.mittal@intel.com>
Fri, 31 Dec 2021 00:33:22 +0000 (08:33 +0800)
With the sdl frontend, qemu isn't able to even boot fully,
so let's skip the test early.

Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 74bb94a7d249b5c53f3e1d15688a3a323fc8e828)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
meta/lib/oeqa/selftest/cases/runtime_test.py

index b20c5b427bb89f4474ddd54a17a6dad81dad3922..668e978f17e3b7f7270548756350ece3b5a57631 100644 (file)
@@ -185,6 +185,8 @@ class TestImage(OESelftestTestCase):
             self.skipTest('virgl isn\'t working with Debian 9')
         if distro and distro == 'centos-7':
             self.skipTest('virgl isn\'t working with Centos 7')
+        if distro and distro == 'centos-8':
+            self.skipTest('virgl isn\'t working with Centos 8')
         if distro and distro == 'opensuseleap-15.0':
             self.skipTest('virgl isn\'t working with Opensuse 15.0')