[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
Re: tests/avocado/virtio-gpu.py:VirtioGPUx86.test_vhost_user_vga_virgl:
|
From: |
Thomas Huth |
|
Subject: |
Re: tests/avocado/virtio-gpu.py:VirtioGPUx86.test_vhost_user_vga_virgl: ERROR |
|
Date: |
Tue, 30 May 2023 19:55:13 +0200 |
|
User-agent: |
Mozilla/5.0 (X11; Linux x86_64; rv:102.0) Gecko/20100101 Thunderbird/102.10.0 |
On 30/05/2023 17.00, Richard Henderson wrote:
Ping.
On 5/25/23 10:00, Richard Henderson wrote:
Hi guys,
https://gitlab.com/qemu-project/qemu/-/jobs/4352476431
https://gitlab.com/qemu-project/qemu/-/jobs/4352476434
This test ERRORs on the azure k8s runners with
qemu-system-x86_64: egl: no drm render node available
qemu-system-x86_64: egl: render node init failed
Can we please SKIP the test if the required resource is not available?
Maybe easy to fix... test_virtio_vga_virgl uses:
try:
self.vm.launch()
except:
# TODO: probably fails because we are missing the VirGL features
self.cancel("VirGL not enabled?")
But the failing test test_vhost_user_vga_virgl just does:
self.vm.launch()
without checking for an exception. I think we need to add the same "try: ...
except:" handling as above. I'll send a patch.
Thomas