]> 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)
committerSteve Sakoman <steve@sakoman.com>
Sun, 12 Dec 2021 17:59:42 +0000 (07:59 -1000)
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>
meta/lib/oeqa/selftest/cases/runtime_test.py

index 1c935da919327a061e5919de7fabbbce3739bc44..9e5c3f2878fd0336d91dc5554efb41e08e001c25 100644 (file)
@@ -179,6 +179,8 @@ class TestImage(OESelftestTestCase):
             self.skipTest('virgl isn\'t working with Debian 8')
         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')