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