@@ -59,6 +59,7 @@ def wait_for_console_pattern(self, success_message, vm=None):
def test_virtio_vga_virgl(self):
"""
:avocado: tags=device:virtio-vga-gl
+ :avocado: tags=machine:pc
"""
# FIXME: should check presence of virtio, virgl etc
self.require_accelerator('kvm')
@@ -68,7 +69,7 @@ def test_virtio_vga_virgl(self):
self.vm.set_console()
self.vm.add_args("-m", "2G")
- self.vm.add_args("-machine", "pc,accel=kvm")
+ self.vm.add_args("-machine", "accel=kvm")
self.vm.add_args("-device", "virtio-vga-gl")
self.vm.add_args("-display", "egl-headless")
self.vm.add_args(
@@ -94,6 +95,7 @@ def test_virtio_vga_virgl(self):
def test_vhost_user_vga_virgl(self):
"""
:avocado: tags=device:vhost-user-vga
+ :avocado: tags=machine:pc
"""
# FIXME: should check presence of vhost-user-gpu, virgl, memfd etc
self.require_accelerator('kvm')
@@ -131,7 +133,7 @@ def test_vhost_user_vga_virgl(self):
self.vm.set_console()
self.vm.add_args("-m", "2G")
self.vm.add_args("-object", "memory-backend-memfd,id=mem,size=2G")
- self.vm.add_args("-machine", "pc,memory-backend=mem,accel=kvm")
+ self.vm.add_args("-machine", "memory-backend=mem,accel=kvm")
self.vm.add_args("-chardev", "socket,id=vug,fd=%d" % qemu_sock.fileno())
self.vm.add_args("-device", "vhost-user-vga,chardev=vug")
self.vm.add_args("-display", "egl-headless")
Using tags=machine:pc will do two things: it will avoid the need to passing '-machine pc' via self.vm.add_args() and it will set the self.machine attribute of the parent QEMUSystemTest class (via its setUp() method). Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> --- tests/avocado/virtio-gpu.py | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-)