]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
selftest: skip virgl test on alma 8.6
authorSteve Sakoman <steve@sakoman.com>
Mon, 16 May 2022 22:32:29 +0000 (12:32 -1000)
committerSteve Sakoman <steve@sakoman.com>
Tue, 17 May 2022 14:14:23 +0000 (04:14 -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 20dc1c9482d3e3dec0922fa81893a21cb6fc1221..3f78a186036518cdc168c0952612d0494e7406e8 100644 (file)
@@ -175,6 +175,8 @@ class TestImage(OESelftestTestCase):
         if "DISPLAY" not in os.environ:
             self.skipTest("virgl gtk test must be run inside a X session")
         distro = oe.lsb.distro_identifier()
+        if distro and distro == 'almalinux-8.6':
+            self.skipTest('virgl isn\'t working with Alma 8')
         if distro and distro == 'debian-8':
             self.skipTest('virgl isn\'t working with Debian 8')
         if distro and distro == 'centos-7':