diff options
author | Cleber Rosa <crosa@redhat.com> | 2021-07-14 13:40:50 -0400 |
---|---|---|
committer | Cleber Rosa <crosa@redhat.com> | 2021-07-20 15:34:20 -0400 |
commit | 3a05eee2fea17a0248307cbd627de469b91affb6 (patch) | |
tree | d449f3c07901933d840850f576413b46ec23583b | |
parent | 532835d02289134450ec22c8958b7c9f7212bdb4 (diff) | |
download | qemu-3a05eee2fea17a0248307cbd627de469b91affb6.zip |
tests/acceptance/virtio-gpu.py: use virtio-vga-gl
Since 49afbca3b, the use of an optional virgl renderer is not
available anymore, and since b36eb8860f, the way to choose a GL based
rendered is to use the "virtio-vga-gl" device.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Message-Id: <20210714174051.28164-6-crosa@redhat.com>
Reviewed-by: Willian Rampazzo <willianr@redhat.com>
Reviewed-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Signed-off-by: Cleber Rosa <crosa@redhat.com>
-rw-r--r-- | tests/acceptance/virtio-gpu.py | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tests/acceptance/virtio-gpu.py b/tests/acceptance/virtio-gpu.py index fbde278705..0f84affe82 100644 --- a/tests/acceptance/virtio-gpu.py +++ b/tests/acceptance/virtio-gpu.py @@ -56,7 +56,7 @@ class VirtioGPUx86(Test): def test_virtio_vga_virgl(self): """ - :avocado: tags=device:virtio-vga + :avocado: tags=device:virtio-vga-gl """ # FIXME: should check presence of virtio, virgl etc self.require_accelerator('kvm') @@ -67,7 +67,7 @@ class VirtioGPUx86(Test): self.vm.set_console() self.vm.add_args("-m", "2G") self.vm.add_args("-machine", "pc,accel=kvm") - self.vm.add_args("-device", "virtio-vga,virgl=on") + self.vm.add_args("-device", "virtio-vga-gl") self.vm.add_args("-display", "egl-headless") self.vm.add_args( "-kernel", |