summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2024-10-10 08:41:39 -0700
committerSteve Sakoman <steve@sakoman.com>2024-10-12 05:17:58 -0700
commitb22df9e15704db7daecc71b541d6a47f1ae7f774 (patch)
treea30c36e1a8691a5fdc78c326b526b19dd348d85c
parent2589544ca8df7736c2217d78da327e382a59af27 (diff)
downloadpoky-b22df9e15704db7daecc71b541d6a47f1ae7f774.tar.gz
selftest/runtime_test/virgl: Disable for all fedora
We can't support vgem on RHEL derived distros so disable this test for all fedora hosts rather than specific versions. (From OE-Core rev: c4760d6a52011515b0f931d08f619c7e49e72158) Signed-off-by: Steve Sakoman <steve@sakoman.com>
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 7dcdfd0ab2..93c6da1889 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -258,7 +258,7 @@ class TestImage(OESelftestTestCase):
258 258
259 distro = oe.lsb.distro_identifier() 259 distro = oe.lsb.distro_identifier()
260 if distro and (distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04'] or 260 if distro and (distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04'] or
261 distro.startswith('almalinux') or distro.startswith('rocky')): 261 distro.startswith('almalinux') or distro.startswith('fedora') or distro.startswith('rocky')):
262 self.skipTest('virgl headless cannot be tested with %s' %(distro)) 262 self.skipTest('virgl headless cannot be tested with %s' %(distro))
263 263
264 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.""" 264 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."""