From: Steve Sakoman Date: Thu, 6 Oct 2022 16:11:42 +0000 (-1000) Subject: selftest: skip virgl test on ubuntu 22.04 X-Git-Tag: 2020-04.21-dunfell~33 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=8f53bba4936b79dfe8dfa30216990b3d440150a7;p=thirdparty%2Fopenembedded%2Fopenembedded-core.git selftest: skip virgl test on ubuntu 22.04 This test will fail any time the host has libdrm > 2.4.107 Signed-off-by: Steve Sakoman --- diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index df11984713b..399727de49a 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py @@ -191,6 +191,8 @@ class TestImage(OESelftestTestCase): self.skipTest('virgl isn\'t working with Fedora 36') if distro and distro == 'opensuseleap-15.0': self.skipTest('virgl isn\'t working with Opensuse 15.0') + if distro and distro == 'ubuntu-22.04': + self.skipTest('virgl isn\'t working with Ubuntu 22.04') qemu_packageconfig = get_bb_var('PACKAGECONFIG', 'qemu-system-native') sdl_packageconfig = get_bb_var('PACKAGECONFIG', 'libsdl2-native')