From: Steve Sakoman Date: Tue, 14 Nov 2023 16:33:28 +0000 (-1000) Subject: selftest: skip virgl test on all fedora X-Git-Tag: 2020-04.30~28 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ff7dbcc0206203e2ece68ca91a37050a4bc822a2;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git selftest: skip virgl test on all fedora This test will fail any time the host has libdrm > 2.4.107 Signed-off-by: Steve Sakoman --- diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index d80f85dba21..cc4190c1d66 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py @@ -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':