]> git.ipfire.org Git - thirdparty/openembedded/openembedded-core.git/commitdiff
virgl: skip headless test on alma 8.6
authorSteve Sakoman <steve@sakoman.com>
Sat, 14 May 2022 21:21:27 +0000 (11:21 -1000)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Sun, 15 May 2022 07:49:01 +0000 (08:49 +0100)
As a centos 8 spinoff, it lacks the same vgem kernel module.

(From OE-Core rev: 451605aa40482516c18cd1534feacb796516a785)

Signed-off-by: Steve Sakoman <steve@sakoman.com>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/runtime_test.py

index 3ece617cb0d99e972294ceffe16aa1713e0c63a0..8eacde40adb6099ca826ffbf29f58e2719d426b0 100644 (file)
@@ -252,7 +252,7 @@ class TestImage(OESelftestTestCase):
         import subprocess, os
 
         distro = oe.lsb.distro_identifier()
-        if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04', 'almalinux-8.5']:
+        if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04', 'almalinux-8.5', 'almalinux-8.6']:
             self.skipTest('virgl headless cannot be tested with %s' %(distro))
 
         render_hint = """If /dev/dri/renderD* is absent due to lack of suitable GPU, 'modprobe vgem' will create one suitable for mesa llvmpipe software renderer."""