summaryrefslogtreecommitdiffstats
path: root/meta/lib/oeqa/selftest/cases/runtime_test.py
diff options
context:
space:
mode:
authorAlexander Kanavin <alex.kanavin@gmail.com>2023-02-27 12:40:08 +0100
committerRichard Purdie <richard.purdie@linuxfoundation.org>2023-02-27 13:27:37 +0000
commit5a5ab7cdec7b3e01ddf95f73453e9fcfdd6b986e (patch)
tree6d292c2ab62d4ea8800190eafb0737e8654e23c1 /meta/lib/oeqa/selftest/cases/runtime_test.py
parenta87811f255c2154285dc835817608c5f0fb50bbc (diff)
downloadpoky-5a5ab7cdec7b3e01ddf95f73453e9fcfdd6b986e.tar.gz
scripts/runqemu: move render nodes check to runqemu from selftest
This will produce a more useful hint for those setting up or testing virgl headless: runqemu - ERROR - No render nodes found in /dev/dri: ['by-path', 'card0']. If /dev/dri/renderD* is absent due to lack of suitable GPU, 'modprobe vgem' will create one suitable for mesa llvmpipe software renderer. as qemu itself isn't helpful: alex@Zen2:/srv/storage/alex/yocto/build-64-alt$ qemu-system-x86_64 -display egl-headless qemu-system-x86_64: egl: no drm render node available qemu-system-x86_64: egl: render node init failed (From OE-Core rev: cbbada6a6c9b0a2e97f7395117dad986555f2db9) Signed-off-by: Alexander Kanavin <alex@linutronix.de> Signed-off-by: Richard Purdie <richard.purdie@linuxfoundation.org>
Diffstat (limited to 'meta/lib/oeqa/selftest/cases/runtime_test.py')
-rw-r--r--meta/lib/oeqa/selftest/cases/runtime_test.py7
1 files changed, 0 insertions, 7 deletions
diff --git a/meta/lib/oeqa/selftest/cases/runtime_test.py b/meta/lib/oeqa/selftest/cases/runtime_test.py
index 13e8760a16..e32c4aff85 100644
--- a/meta/lib/oeqa/selftest/cases/runtime_test.py
+++ b/meta/lib/oeqa/selftest/cases/runtime_test.py
@@ -260,13 +260,6 @@ class TestImage(OESelftestTestCase):
260 if distro and (distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04'] or distro.startswith('almalinux')): 260 if distro and (distro in ['debian-9', 'debian-10', 'centos-7', 'centos-8', 'ubuntu-16.04', 'ubuntu-18.04'] or distro.startswith('almalinux')):
261 self.skipTest('virgl headless cannot be tested with %s' %(distro)) 261 self.skipTest('virgl headless cannot be tested with %s' %(distro))
262 262
263 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."""
264 try:
265 content = os.listdir("/dev/dri")
266 if len([i for i in content if i.startswith('render')]) == 0:
267 self.fail("No render nodes found in /dev/dri: %s. %s" %(content, render_hint))
268 except FileNotFoundError:
269 self.fail("/dev/dri directory does not exist; no render nodes available on this machine. %s" %(render_hint))
270 qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native') 263 qemu_distrofeatures = get_bb_var('DISTRO_FEATURES', 'qemu-system-native')
271 features = 'IMAGE_CLASSES += "testimage"\n' 264 features = 'IMAGE_CLASSES += "testimage"\n'
272 if 'opengl' not in qemu_distrofeatures: 265 if 'opengl' not in qemu_distrofeatures: