]> 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)
committerSteve Sakoman <steve@sakoman.com>
Thu, 23 Dec 2021 16:21:37 +0000 (06:21 -1000)
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>
meta/lib/oeqa/selftest/cases/runtime_test.py

index 9e5c3f2878fd0336d91dc5554efb41e08e001c25..f5b3ba27a91556d2c9bb39ee320176f927bbc688 100644 (file)
@@ -181,6 +181,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')