From: Michael Halstead Date: Thu, 9 Mar 2023 00:09:31 +0000 (-0800) Subject: selftest/runtime_test/virgl: Disable for all Rocky Linux X-Git-Tag: lucaceresoli/bug-15201-perf-libtraceevent-missing~1490 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=78bc1ba2361249ec845d1b9e28d429a37dd83910;p=thirdparty%2Fopenembedded%2Fopenembedded-core-contrib.git selftest/runtime_test/virgl: Disable for all Rocky Linux RHEL compatible kernels do not support vgem so we disable virgl headless testing. Signed-off-by: Michael Halstead Signed-off-by: Richard Purdie --- diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index e32c4aff85d..81b8d056ccd 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py @@ -257,7 +257,8 @@ class TestImage(OESelftestTestCase): import subprocess, os 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')): + 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')): self.skipTest('virgl headless cannot be tested with %s' %(distro)) qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native')