summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2023-11-14 06:33:28 -1000
committerSteve Sakoman <steve@sakoman.com>2023-11-14 06:35:38 -1000
commitff7dbcc0206203e2ece68ca91a37050a4bc822a2 (patch)
tree4525d1286e2891bfee9c9059feefc64a3c7c5521
parentf398c84405913bd8038c007f43f991f54d136571 (diff)
downloadopenembedded-core-contrib-ff7dbcc0206203e2ece68ca91a37050a4bc822a2.tar.gz
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 <steve@sakoman.com>
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py10
1 files changed, 2 insertions, 8 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index d80f85dba2..cc4190c1d6 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':