]> code.ossystems Code Review - openembedded-core.git/commitdiff
virgl: skip headless test on alma 8
authorAlexander Kanavin <alex.kanavin@gmail.com>
Thu, 6 Jan 2022 15:58:44 +0000 (16:58 +0100)
committerRichard Purdie <richard.purdie@linuxfoundation.org>
Fri, 7 Jan 2022 14:37:50 +0000 (14:37 +0000)
As a centos 8 spinoff, it lacks the same vgem kernel module.

Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
meta/lib/oeqa/selftest/cases/runtime_test.py

index a90f62bfe1761039a57916cef6906c0c46078cec..5637a02451d6077dcf029922924d9454254ab7f4 100644 (file)
@@ -214,7 +214,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']:
+        if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04', 'almalinux-8.5']:
             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 sutable for mesa llvmpipe sofware renderer."""