summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorSteve Sakoman <steve@sakoman.com>2022-05-14 11:21:27 -1000
committerRichard Purdie <richard.purdie@linuxfoundation.org>2022-05-15 08:49:22 +0100
commiteaa61803b10743d3f9480c41d6c408f66cb0bca9 (patch)
tree3e57a862e8aed1b351b565e343666c13a2e82e84
parentfea9e46d39ef43967aead86fa537bca449290253 (diff)
downloadpoky-eaa61803b10743d3f9480c41d6c408f66cb0bca9.tar.gz
virgl: skip headless test on alma 8.6
As a centos 8 spinoff, it lacks the same vgem kernel module. (From OE-Core rev: 451605aa40482516c18cd1534feacb796516a785) (From OE-Core rev: 8f74418637fbcdd7c68636ec1b9adfffc245f9c1) Signed-off-by: Steve Sakoman <steve@sakoman.com> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py2
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 3ece617cb0..8eacde40ad 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -252,7 +252,7 @@ class TestImage(OESelftestTestCase):
252 import subprocess, os 252 import subprocess, os
253 253
254 distro = oe.lsb.distro_identifier() 254 distro = oe.lsb.distro_identifier()
255 if distro and distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04', 'almalinux-8.5']: 255 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']:
256 self.skipTest('virgl headless cannot be tested with %s' %(distro)) 256 self.skipTest('virgl headless cannot be tested with %s' %(distro))
257 257
258 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.""" 258 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."""