* [PATCH] tests/functional/test_x86_64_kvm_xen: Remove avocado tags
@ 2025-03-18 17:15 Thomas Huth
2025-03-18 17:39 ` Daniel P. Berrangé
2025-03-18 18:09 ` Philippe Mathieu-Daudé
0 siblings, 2 replies; 3+ messages in thread
From: Thomas Huth @ 2025-03-18 17:15 UTC (permalink / raw)
To: qemu-devel
Cc: Paul Durrant, David Woodhouse, Philippe Mathieu-Daudé,
Daniel P . Berrangé
From: Thomas Huth <thuth@redhat.com>
They have been forgotten to be removed when converting the
test to the functional framework. Since they are of no use
anymore, let's remove them now.
Signed-off-by: Thomas Huth <thuth@redhat.com>
---
tests/functional/test_x86_64_kvm_xen.py | 28 -------------------------
1 file changed, 28 deletions(-)
diff --git a/tests/functional/test_x86_64_kvm_xen.py b/tests/functional/test_x86_64_kvm_xen.py
index 0298c96c2eb..3bedef6c98c 100755
--- a/tests/functional/test_x86_64_kvm_xen.py
+++ b/tests/functional/test_x86_64_kvm_xen.py
@@ -80,10 +80,6 @@ def run_and_check(self):
wait_for_console_pattern(self, '#', 'Oops')
def test_kvm_xen_guest(self):
- """
- :avocado: tags=kvm_xen_guest
- """
-
self.common_vm_setup()
self.kernel_params = (self.KERNEL_DEFAULT +
@@ -94,10 +90,6 @@ def test_kvm_xen_guest(self):
'virtio0-output')
def test_kvm_xen_guest_nomsi(self):
- """
- :avocado: tags=kvm_xen_guest_nomsi
- """
-
self.common_vm_setup()
self.kernel_params = (self.KERNEL_DEFAULT +
@@ -108,10 +100,6 @@ def test_kvm_xen_guest_nomsi(self):
'virtio0')
def test_kvm_xen_guest_noapic_nomsi(self):
- """
- :avocado: tags=kvm_xen_guest_noapic_nomsi
- """
-
self.common_vm_setup()
self.kernel_params = (self.KERNEL_DEFAULT +
@@ -122,10 +110,6 @@ def test_kvm_xen_guest_noapic_nomsi(self):
'virtio0')
def test_kvm_xen_guest_vapic(self):
- """
- :avocado: tags=kvm_xen_guest_vapic
- """
-
self.common_vm_setup()
self.vm.add_args('-cpu', 'host,+xen-vapic')
self.kernel_params = (self.KERNEL_DEFAULT +
@@ -140,10 +124,6 @@ def test_kvm_xen_guest_vapic(self):
'virtio0-output')
def test_kvm_xen_guest_novector(self):
- """
- :avocado: tags=kvm_xen_guest_novector
- """
-
self.common_vm_setup()
self.kernel_params = (self.KERNEL_DEFAULT +
' xen_emul_unplug=ide-disks' +
@@ -154,10 +134,6 @@ def test_kvm_xen_guest_novector(self):
'fasteoi')
def test_kvm_xen_guest_novector_nomsi(self):
- """
- :avocado: tags=kvm_xen_guest_novector_nomsi
- """
-
self.common_vm_setup()
self.kernel_params = (self.KERNEL_DEFAULT +
@@ -169,10 +145,6 @@ def test_kvm_xen_guest_novector_nomsi(self):
'IO-APIC')
def test_kvm_xen_guest_novector_noapic(self):
- """
- :avocado: tags=kvm_xen_guest_novector_noapic
- """
-
self.common_vm_setup()
self.kernel_params = (self.KERNEL_DEFAULT +
' xen_emul_unplug=ide-disks' +
--
2.48.1
^ permalink raw reply related [flat|nested] 3+ messages in thread* Re: [PATCH] tests/functional/test_x86_64_kvm_xen: Remove avocado tags
2025-03-18 17:15 [PATCH] tests/functional/test_x86_64_kvm_xen: Remove avocado tags Thomas Huth
@ 2025-03-18 17:39 ` Daniel P. Berrangé
2025-03-18 18:09 ` Philippe Mathieu-Daudé
1 sibling, 0 replies; 3+ messages in thread
From: Daniel P. Berrangé @ 2025-03-18 17:39 UTC (permalink / raw)
To: Thomas Huth
Cc: qemu-devel, Paul Durrant, David Woodhouse,
Philippe Mathieu-Daudé
On Tue, Mar 18, 2025 at 06:15:30PM +0100, Thomas Huth wrote:
> From: Thomas Huth <thuth@redhat.com>
>
> They have been forgotten to be removed when converting the
> test to the functional framework. Since they are of no use
> anymore, let's remove them now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> tests/functional/test_x86_64_kvm_xen.py | 28 -------------------------
> 1 file changed, 28 deletions(-)
Reviewed-by: Daniel P. Berrangé <berrange@redhat.com>
With regards,
Daniel
--
|: https://berrange.com -o- https://www.flickr.com/photos/dberrange :|
|: https://libvirt.org -o- https://fstop138.berrange.com :|
|: https://entangle-photo.org -o- https://www.instagram.com/dberrange :|
^ permalink raw reply [flat|nested] 3+ messages in thread
* Re: [PATCH] tests/functional/test_x86_64_kvm_xen: Remove avocado tags
2025-03-18 17:15 [PATCH] tests/functional/test_x86_64_kvm_xen: Remove avocado tags Thomas Huth
2025-03-18 17:39 ` Daniel P. Berrangé
@ 2025-03-18 18:09 ` Philippe Mathieu-Daudé
1 sibling, 0 replies; 3+ messages in thread
From: Philippe Mathieu-Daudé @ 2025-03-18 18:09 UTC (permalink / raw)
To: Thomas Huth, qemu-devel
Cc: Paul Durrant, David Woodhouse, Daniel P . Berrangé
On 18/3/25 18:15, Thomas Huth wrote:
> From: Thomas Huth <thuth@redhat.com>
>
> They have been forgotten to be removed when converting the
> test to the functional framework. Since they are of no use
> anymore, let's remove them now.
>
> Signed-off-by: Thomas Huth <thuth@redhat.com>
> ---
> tests/functional/test_x86_64_kvm_xen.py | 28 -------------------------
> 1 file changed, 28 deletions(-)
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
^ permalink raw reply [flat|nested] 3+ messages in thread
end of thread, other threads:[~2025-03-18 18:10 UTC | newest]
Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2025-03-18 17:15 [PATCH] tests/functional/test_x86_64_kvm_xen: Remove avocado tags Thomas Huth
2025-03-18 17:39 ` Daniel P. Berrangé
2025-03-18 18:09 ` Philippe Mathieu-Daudé
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).