[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PATCH 5/5] avocado/virtio-gpu.py: use tags=machine:pc
From: |
Daniel Henrique Barboza |
Subject: |
[PATCH 5/5] avocado/virtio-gpu.py: use tags=machine:pc |
Date: |
Mon, 16 May 2022 13:53:21 -0300 |
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(-)
diff --git a/tests/avocado/virtio-gpu.py b/tests/avocado/virtio-gpu.py
index 2a249a3a2c..a88f43d312 100644
--- a/tests/avocado/virtio-gpu.py
+++ b/tests/avocado/virtio-gpu.py
@@ -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")
--
2.32.0