diff options
author | Alex Bennée <alex.bennee@linaro.org> | 2025-03-04 22:24:13 +0000 |
---|---|---|
committer | Alex Bennée <alex.bennee@linaro.org> | 2025-03-10 10:30:00 +0000 |
commit | 8233f4f26d831c72970d00164f8f58a63c73ecfa (patch) | |
tree | 695d12a4ec0aa0423703e35b8667bdaec97d2faa | |
parent | 9f7e493d117c852be4af529c1670c293eab063b4 (diff) | |
download | qemu-8233f4f26d831c72970d00164f8f58a63c73ecfa.zip qemu-8233f4f26d831c72970d00164f8f58a63c73ecfa.tar.gz qemu-8233f4f26d831c72970d00164f8f58a63c73ecfa.tar.bz2 |
tests/functional: expand tests to cover virgl
Add two more test modes using glmark2-wayland to exercise the OpenGL
pass-through modes with virgl. Virgl can run with or without the
hostmem blob support. To avoid repeating ourselves too much we make
the initial pass a simple --validate pass.
We might want to eventually add more directed tests and individual
features later on but the glmark/vkmark tests are a good general
smoke test for accelerated 3D.
Reviewed-by: Thomas Huth <thuth@redhat.com>
Signed-off-by: Alex Bennée <alex.bennee@linaro.org>
Message-Id: <20250304222439.2035603-7-alex.bennee@linaro.org>
-rwxr-xr-x | tests/functional/test_aarch64_virt_gpu.py | 22 |
1 files changed, 22 insertions, 0 deletions
diff --git a/tests/functional/test_aarch64_virt_gpu.py b/tests/functional/test_aarch64_virt_gpu.py index 8e6f081..56a3ed3 100755 --- a/tests/functional/test_aarch64_virt_gpu.py +++ b/tests/functional/test_aarch64_virt_gpu.py @@ -93,6 +93,28 @@ class Aarch64VirtGPUMachine(LinuxKernelTest): ec_and_wait(self, full_cmd, OK_CMD, fail) @skipIfMissingCommands('zstd') + def test_aarch64_virt_with_virgl_gpu(self): + + self.require_device('virtio-gpu-gl-pci') + + self._launch_virt_gpu("virtio-gpu-gl-pci") + + # subset of the glmark tests + tests = " ".join([f"-b {test}" for test in + ["build", "texture", "shading", + "bump", "desktop", "buffer"]]) + + self._run_virt_weston_test("glmark2-wayland --validate " + tests) + + @skipIfMissingCommands('zstd') + def test_aarch64_virt_with_virgl_blobs_gpu(self): + + self.require_device('virtio-gpu-gl-pci') + + self._launch_virt_gpu("virtio-gpu-gl-pci,hostmem=4G,blob=on") + self._run_virt_weston_test("glmark2-wayland -b:duration=1.0") + + @skipIfMissingCommands('zstd') def test_aarch64_virt_with_vulkan_gpu(self): self.require_device('virtio-gpu-gl-pci') |