* [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is not available
@ 2023-05-30 18:03 Thomas Huth
2023-05-31 5:53 ` Philippe Mathieu-Daudé
2023-05-31 15:20 ` Richard Henderson
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Huth @ 2023-05-30 18:03 UTC (permalink / raw)
To: qemu-devel, Richard Henderson
Cc: Marc-André Lureau, Philippe Mathieu-Daudé
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(-)
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", ""
--
2.31.1
^ permalink raw reply related [flat|nested] 3+ messages in thread
* Re: [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is not available
2023-05-30 18:03 [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is not available Thomas Huth
@ 2023-05-31 5:53 ` Philippe Mathieu-Daudé
2023-05-31 15:20 ` Richard Henderson
1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2023-05-31 5:53 UTC (permalink / raw)
To: Thomas Huth, qemu-devel, Richard Henderson; +Cc: Marc-André Lureau
On 30/5/23 20: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.
Reported-by: Richard Henderson <richard.henderson@linaro.org>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> tests/avocado/virtio-gpu.py | 6 +++++-
> 1 file changed, 5 insertions(+), 1 deletion(-)
>
> 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")
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is not available
2023-05-30 18:03 [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is not available Thomas Huth
2023-05-31 5:53 ` Philippe Mathieu-Daudé
@ 2023-05-31 15:20 ` Richard Henderson
1 sibling, 0 replies; 3+ messages in thread
From: Richard Henderson @ 2023-05-31 15:20 UTC (permalink / raw)
To: Thomas Huth, qemu-devel
Cc: Marc-André Lureau, Philippe Mathieu-Daudé
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", ""
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2023-05-31 15:21 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-05-30 18:03 [PATCH] tests/avocado/virtio-gpu: Cancel test if drm rendering is not available Thomas Huth
2023-05-31 5:53 ` Philippe Mathieu-Daudé
2023-05-31 15:20 ` Richard Henderson
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).