]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
selftest: skip virgl test on all fedora
authorSteve Sakoman <steve@sakoman.com>
Tue, 14 Nov 2023 16:33:28 +0000 (06:33 -1000)
committerSteve Sakoman <steve@sakoman.com>
Tue, 14 Nov 2023 16:35:38 +0000 (06:35 -1000)
This test will fail any time the host has libdrm > 2.4.107

Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/lib/oeqa/selftest/cases/runtime_test.py

index d80f85dba214c0832857aa02919ce2bd5548bc1d..cc4190c1d6648c9110bd7e3eed0f1d09ff99d9da 100644 (file)
@@ -185,14 +185,8 @@ class TestImage(OESelftestTestCase):
             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 == 'fedora-34':
-            self.skipTest('virgl isn\'t working with Fedora 34')
-        if distro and distro == 'fedora-35':
-            self.skipTest('virgl isn\'t working with Fedora 35')
-        if distro and distro == 'fedora-36':
-            self.skipTest('virgl isn\'t working with Fedora 36')
-        if distro and distro == 'fedora-37':
-            self.skipTest('virgl isn\'t working with Fedora 37')
+        if distro and distro.startswith('fedora'):
+            self.skipTest('virgl isn\'t working with Fedora')
         if distro and distro == 'opensuseleap-15.0':
             self.skipTest('virgl isn\'t working with Opensuse 15.0')
         if distro and distro == 'ubuntu-22.04':