diff options
author | Cleber Rosa <crosa@redhat.com> | 2023-12-08 14:09:10 -0500 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2024-07-22 07:41:46 +0200 |
commit | 9e6e7d814c941d167621797f6c50aca3628913e2 (patch) | |
tree | a0a43636b8c55c9682bd857300bc2ec2f40260b7 | |
parent | b22bf37dffe47993d37f2809cc16b7f4e99c619e (diff) | |
download | qemu-9e6e7d814c941d167621797f6c50aca3628913e2.zip qemu-9e6e7d814c941d167621797f6c50aca3628913e2.tar.gz qemu-9e6e7d814c941d167621797f6c50aca3628913e2.tar.bz2 |
tests/avocado/boot_xen.py: unify tags
Because all tests share the same tags, it's possible to have all of
them at the class level.
Signed-off-by: Cleber Rosa <crosa@redhat.com>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20231208190911.102879-10-crosa@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
-rw-r--r-- | tests/avocado/boot_xen.py | 26 |
1 files changed, 5 insertions, 21 deletions
diff --git a/tests/avocado/boot_xen.py b/tests/avocado/boot_xen.py index f80cbcb..f4b63c1 100644 --- a/tests/avocado/boot_xen.py +++ b/tests/avocado/boot_xen.py @@ -20,6 +20,11 @@ from boot_linux_console import LinuxKernelTest class BootXen(LinuxKernelTest): """ Boots a Xen hypervisor with a Linux DomU kernel. + + :avocado: tags=arch:aarch64 + :avocado: tags=accel:tcg + :avocado: tags=cpu:cortex-a57 + :avocado: tags=machine:virt """ timeout = 90 @@ -60,13 +65,6 @@ class BootXen(LinuxKernelTest): wait_for_console_pattern(self, console_pattern, "Panic on CPU 0:") def test_arm64_xen_411_and_dom0(self): - """ - :avocado: tags=arch:aarch64 - :avocado: tags=accel:tcg - :avocado: tags=cpu:cortex-a57 - :avocado: tags=machine:virt - """ - # archive of file from https://deb.debian.org/debian/pool/main/x/xen/ xen_url = ('https://fileserver.linaro.org/s/JSsewXGZ6mqxPr5/' 'download?path=%2F&files=' @@ -78,13 +76,6 @@ class BootXen(LinuxKernelTest): self.launch_xen(xen_path) def test_arm64_xen_414_and_dom0(self): - """ - :avocado: tags=arch:aarch64 - :avocado: tags=accel:tcg - :avocado: tags=cpu:cortex-a57 - :avocado: tags=machine:virt - """ - # archive of file from https://deb.debian.org/debian/pool/main/x/xen/ xen_url = ('https://fileserver.linaro.org/s/JSsewXGZ6mqxPr5/' 'download?path=%2F&files=' @@ -96,13 +87,6 @@ class BootXen(LinuxKernelTest): self.launch_xen(xen_path) def test_arm64_xen_415_and_dom0(self): - """ - :avocado: tags=arch:aarch64 - :avocado: tags=accel:tcg - :avocado: tags=cpu:cortex-a57 - :avocado: tags=machine:virt - """ - xen_url = ('https://fileserver.linaro.org/' 's/JSsewXGZ6mqxPr5/download' '?path=%2F&files=xen-upstream-4.15-unstable.deb') |