]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest: skip virgl test on fedora 34 entirely
authorSteve Sakoman <steve@sakoman.com>
Tue, 21 Dec 2021 17:56:17 +0000 (07:56 -1000)
committerAnuj Mittal <anuj.mittal@intel.com>
Fri, 31 Dec 2021 00:33:30 +0000 (08:33 +0800)
Fedora 34 recently updated libdrm to 2.4.109 and this test will fail any
time the host has libdrm > 2.4.107

Signed-off-by: Steve Sakoman <steve@sakoman.com>
(cherry picked from commit 1ab7aee542589f6b6c76f8515b4230ce870a8678)
Signed-off-by: Anuj Mittal <anuj.mittal@intel.com>
meta/lib/oeqa/selftest/cases/runtime_test.py

index 668e978f17e3b7f7270548756350ece3b5a57631..2148e84ff3cb1ad90fcf675566de5f3d7e30b04a 100644 (file)
@@ -187,6 +187,8 @@ class TestImage(OESelftestTestCase):
             self.skipTest('virgl isn\'t working with Centos 7')
         if distro and distro == 'centos-8':
             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 == 'opensuseleap-15.0':
             self.skipTest('virgl isn\'t working with Opensuse 15.0')