summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2023-05-16 12:53:54 -1000
committerSteve Sakoman <steve@sakoman.com>2023-05-25 05:49:26 -1000
commitcd4656d9b25e45e232b381028eb925b5a8d06d11 (patch)
tree94da4365924b71b82757c22d539d3ae1d98095b1 /meta/lib/oeqa/selftest/cases
parent602a3ebec7314527baaf2e73a1489b48f8f70925 (diff)
downloadpoky-cd4656d9b25e45e232b381028eb925b5a8d06d11.tar.gz
selftest: skip virgl test on ubuntu 22.10, fedora 37, and all rocky
This test will fail any time the host has libdrm > 2.4.107 (From OE-Core rev: e4b98a42970574296e0da06842691b9fc1ffc9a1) Signed-off-by: Steve Sakoman <steve@sakoman.com>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases')
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py6
1 files changed, 6 insertions, 0 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 5439bd426b..d80f85dba2 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -177,6 +177,8 @@ class TestImage(OESelftestTestCase):
177 distro = oe.lsb.distro_identifier() 177 distro = oe.lsb.distro_identifier()
178 if distro and distro.startswith('almalinux'): 178 if distro and distro.startswith('almalinux'):
179 self.skipTest('virgl isn\'t working with Alma Linux') 179 self.skipTest('virgl isn\'t working with Alma Linux')
180 if distro and distro.startswith('rocky'):
181 self.skipTest('virgl isn\'t working with Rocky Linux')
180 if distro and distro == 'debian-8': 182 if distro and distro == 'debian-8':
181 self.skipTest('virgl isn\'t working with Debian 8') 183 self.skipTest('virgl isn\'t working with Debian 8')
182 if distro and distro == 'centos-7': 184 if distro and distro == 'centos-7':
@@ -189,10 +191,14 @@ class TestImage(OESelftestTestCase):
189 self.skipTest('virgl isn\'t working with Fedora 35') 191 self.skipTest('virgl isn\'t working with Fedora 35')
190 if distro and distro == 'fedora-36': 192 if distro and distro == 'fedora-36':
191 self.skipTest('virgl isn\'t working with Fedora 36') 193 self.skipTest('virgl isn\'t working with Fedora 36')
194 if distro and distro == 'fedora-37':
195 self.skipTest('virgl isn\'t working with Fedora 37')
192 if distro and distro == 'opensuseleap-15.0': 196 if distro and distro == 'opensuseleap-15.0':
193 self.skipTest('virgl isn\'t working with Opensuse 15.0') 197 self.skipTest('virgl isn\'t working with Opensuse 15.0')
194 if distro and distro == 'ubuntu-22.04': 198 if distro and distro == 'ubuntu-22.04':
195 self.skipTest('virgl isn\'t working with Ubuntu 22.04') 199 self.skipTest('virgl isn\'t working with Ubuntu 22.04')
200 if distro and distro == 'ubuntu-22.10':
201 self.skipTest('virgl isn\'t working with Ubuntu 22.10')
196 202
197 qemu_packageconfig = get_bb_var('PACKAGECONFIG', 'qemu-system-native') 203 qemu_packageconfig = get_bb_var('PACKAGECONFIG', 'qemu-system-native')
198 sdl_packageconfig = get_bb_var('PACKAGECONFIG', 'libsdl2-native') 204 sdl_packageconfig = get_bb_var('PACKAGECONFIG', 'libsdl2-native')