diff options
author | Alexander Kanavin <alex.kanavin@gmail.com> | 2022-01-06 16:58:44 +0100 |
---|---|---|
committer | Richard Purdie <richard.purdie@linuxfoundation.org> | 2022-01-07 14:39:17 +0000 |
commit | d5279dac962fc2483cd01ea86b12985c573e1d6d (patch) | |
tree | 1867e70eb3b71d8e0abd2e44afb30861bd5bf56b /meta/lib | |
parent | e4a7c042d84acd8a5065ae4c5f27629a09ec8070 (diff) | |
download | poky-d5279dac962fc2483cd01ea86b12985c573e1d6d.tar.gz |
virgl: skip headless test on alma 8
As a centos 8 spinoff, it lacks the same vgem kernel module.
(From OE-Core rev: a48bfc9c0938c51c91dd925bd7f5360bc01252ae)
Signed-off-by: Alexander Kanavin <alex@linutronix.de>
Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib')
-rw-r--r-- | meta/lib/oeqa/selftest/cases/runtime_test.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py index a90f62bfe1..5637a02451 100644 --- a/meta/lib/oeqa/selftest/cases/runtime_test.py +++ b/meta/lib/oeqa/selftest/cases/runtime_test.py | |||
@@ -214,7 +214,7 @@ class TestImage(OESelftestTestCase): | |||
214 | import subprocess, os | 214 | import subprocess, os |
215 | 215 | ||
216 | distro = oe.lsb.distro_identifier() | 216 | distro = oe.lsb.distro_identifier() |
217 | if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04']: | 217 | if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04', 'almalinux-8.5']: |
218 | self.skipTest('virgl headless cannot be tested with %s' %(distro)) | 218 | self.skipTest('virgl headless cannot be tested with %s' %(distro)) |
219 | 219 | ||
220 | 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.""" | 220 | 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.""" |