summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/runtime_test.py
diff options
context:
space:
mode:
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/runtime_test.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py7
1 files changed, 7 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index b20c5b427b..f9649339e5 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -185,6 +185,10 @@ class TestImage(OESelftestTestCase):
185 self.skipTest('virgl isn\'t working with Debian 9') 185 self.skipTest('virgl isn\'t working with Debian 9')
186 if distro and distro == 'centos-7': 186 if distro and distro == 'centos-7':
187 self.skipTest('virgl isn\'t working with Centos 7') 187 self.skipTest('virgl isn\'t working with Centos 7')
188 if distro and distro == 'centos-8':
189 self.skipTest('virgl isn\'t working with Centos 8')
190 if distro and distro == 'fedora-34':
191 self.skipTest('virgl isn\'t working with Fedora 34')
188 if distro and distro == 'opensuseleap-15.0': 192 if distro and distro == 'opensuseleap-15.0':
189 self.skipTest('virgl isn\'t working with Opensuse 15.0') 193 self.skipTest('virgl isn\'t working with Opensuse 15.0')
190 194
@@ -228,6 +232,9 @@ class TestImage(OESelftestTestCase):
228 dripath = subprocess.check_output("pkg-config --variable=dridriverdir dri", shell=True) 232 dripath = subprocess.check_output("pkg-config --variable=dridriverdir dri", shell=True)
229 except subprocess.CalledProcessError as e: 233 except subprocess.CalledProcessError as e:
230 self.skipTest("Could not determine the path to dri drivers on the host via pkg-config.\nPlease install Mesa development files (particularly, dri.pc) on the host machine.") 234 self.skipTest("Could not determine the path to dri drivers on the host via pkg-config.\nPlease install Mesa development files (particularly, dri.pc) on the host machine.")
235 distro = oe.lsb.distro_identifier()
236 if distro and distro == 'fedora-34':
237 self.skipTest('virgl isn\'t working with Fedora 34')
231 qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native') 238 qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native')
232 features = 'INHERIT += "testimage"\n' 239 features = 'INHERIT += "testimage"\n'
233 if 'opengl' not in qemu_distrofeatures: 240 if 'opengl' not in qemu_distrofeatures: