]> code.ossystems Code Review - openembedded-core.git/commitdiff
selftest: skip virgl test on fedora 35
authorSteve Sakoman <steve@sakoman.com>
Thu, 6 Jan 2022 14:20:16 +0000 (04:20 -1000)
committerSteve Sakoman <steve@sakoman.com>
Thu, 6 Jan 2022 14:27:01 +0000 (04:27 -1000)
This test will fail any time the host has libdrm > 2.4.107

Signed-off-by: Steve Sakoman <steve@sakoman.com>
meta/lib/oeqa/selftest/cases/runtime_test.py

index f5b3ba27a91556d2c9bb39ee320176f927bbc688..20dc1c9482d3e3dec0922fa81893a21cb6fc1221 100644 (file)
@@ -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')