]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core-contrib.git/commitdiff
selftest/runtime_test/virgl: Disable for all fedora
authorSteve Sakoman <steve@sakoman.com>
Thu, 10 Oct 2024 15:41:39 +0000 (08:41 -0700)
committerSteve Sakoman <steve@sakoman.com>
Thu, 10 Oct 2024 15:41:39 +0000 (08:41 -0700)
We can't support vgem on RHEL derived distros so disable this test for
all fedora hosts rather than specific versions.

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

index 7dcdfd0ab2bd397f27e1c9d38f1bfa26da047c06..93c6da1889380c6b0b577305e34db5d20e6cdc2e 100644 (file)
@@ -258,7 +258,7 @@ class TestImage(OESelftestTestCase):
 
         distro = oe.lsb.distro_identifier()
         if distro and (distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04'] or
-            distro.startswith('almalinux') or distro.startswith('rocky')):
+            distro.startswith('almalinux') or distro.startswith('fedora') or distro.startswith('rocky')):
             self.skipTest('virgl headless cannot be tested with %s' %(distro))
 
         render_hint = """If /dev/dri/renderD* is absent due to lack of suitable GPU, 'modprobe vgem' will create one suitable for mesa llvmpipe software renderer."""