From: Steve Sakoman Date: Thu, 6 Jan 2022 14:20:16 +0000 (-1000) Subject: selftest: skip virgl test on fedora 35 X-Git-Tag: yocto-3.1.14~26 X-Git-Url: https://code.ossystems.io/gitweb?a=commitdiff_plain;h=bb767e338ad25e27e6bf2c7dfdecc639e8105059;p=openembedded-core.git selftest: skip virgl test on fedora 35 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 f5b3ba27a9..20dc1c9482 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py @@ -183,6 +183,8 @@ class TestImage(OESelftestTestCase): self.skipTest('virgl isn\'t working with Centos 8') if distro and distro == 'fedora-34': self.skipTest('virgl isn\'t working with Fedora 34') + if distro and distro == 'fedora-35': + self.skipTest('virgl isn\'t working with Fedora 35') if distro and distro == 'opensuseleap-15.0': self.skipTest('virgl isn\'t working with Opensuse 15.0')