qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is no


From: Richard Henderson
Subject: Re: [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is not available
Date: Wed, 31 May 2023 08:20:58 -0700
User-agent: Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.11.0

On 5/30/23 11:03, Thomas Huth wrote:
The test_vhost_user_vga_virgl test currently fails on some CI
machines with:

  qemu-system-x86_64: egl: no drm render node available
  qemu-system-x86_64: egl: render node init failed

The other test in this file already checks whether there is
an error while starting QEMU - we should do the same for the
test_vhost_user_vga_virgl test, too.

Signed-off-by: Thomas Huth <thuth@redhat.com>
---
  tests/avocado/virtio-gpu.py | 6 +++++-
  1 file changed, 5 insertions(+), 1 deletion(-)

Thanks.  I have applied this to master directly, trying to green the board.


r~


diff --git a/tests/avocado/virtio-gpu.py b/tests/avocado/virtio-gpu.py
index e3b58fe799..89bfecc715 100644
--- a/tests/avocado/virtio-gpu.py
+++ b/tests/avocado/virtio-gpu.py
@@ -143,7 +143,11 @@ def test_vhost_user_vga_virgl(self):
              "-append",
              self.KERNEL_COMMAND_LINE,
          )
-        self.vm.launch()
+        try:
+            self.vm.launch()
+        except:
+            # TODO: probably fails because we are missing the VirGL features
+            self.cancel("VirGL not enabled?")
          self.wait_for_console_pattern("as init process")
          exec_command_and_wait_for_pattern(
              self, "/usr/sbin/modprobe virtio_gpu", ""




reply via email to

[Prev in Thread] Current Thread [Next in Thread]