tests/functional: Move s390x tests into target-specific folders

The tests/functional folder has become quite crowded, thus move the
s390x tests into a target-specific subfolder.

Reviewed-by: Pierrick Bouvier <pierrick.bouvier@linaro.org>
Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Signed-off-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20250819112403.432587-20-thuth@redhat.com>
This commit is contained in:
Thomas Huth
2025-08-27 09:46:55 +02:00
parent bbb43ea3be
commit 5e50a3c9c0
8 changed files with 17 additions and 15 deletions
+3 -3
View File
@@ -1797,7 +1797,7 @@ S: Supported
F: hw/s390x/
F: include/hw/s390x/
F: configs/devices/s390x-softmmu/default.mak
F: tests/functional/test_s390x_*
F: tests/functional/s390x
T: git https://github.com/borntraeger/qemu.git s390-next
L: qemu-s390x@nongnu.org
@@ -1811,7 +1811,7 @@ F: hw/s390x/ipl.*
F: pc-bios/s390-ccw/
F: pc-bios/s390-ccw.img
F: docs/devel/s390-dasd-ipl.rst
F: tests/functional/test_s390x_pxelinux.py
F: tests/functional/s390x/test_pxelinux.py
T: git https://github.com/borntraeger/qemu.git s390-next
L: qemu-s390x@nongnu.org
@@ -1865,7 +1865,7 @@ F: hw/s390x/cpu-topology.c
F: target/s390x/kvm/stsi-topology.c
F: docs/devel/s390-cpu-topology.rst
F: docs/system/s390x/cpu-topology.rst
F: tests/functional/test_s390x_topology.py
F: tests/functional/s390x/test_topology.py
X86 Machines
------------
+1 -12
View File
@@ -29,10 +29,7 @@ subdir('ppc64')
subdir('riscv32')
subdir('riscv64')
subdir('rx')
test_s390x_timeouts = {
's390x_ccw_virtio' : 420,
}
subdir('s390x')
test_sh4_timeouts = {
'sh4_tuxrun' : 240,
@@ -59,14 +56,6 @@ tests_generic_linuxuser = [
tests_generic_bsduser = [
]
tests_s390x_system_thorough = [
's390x_ccw_virtio',
's390x_pxelinux',
's390x_replay',
's390x_topology',
's390x_tuxrun',
]
tests_sh4_system_thorough = [
'sh4_r2d',
'sh4_tuxrun',
+13
View File
@@ -0,0 +1,13 @@
# SPDX-License-Identifier: GPL-2.0-or-later
test_s390x_timeouts = {
'ccw_virtio' : 420,
}
tests_s390x_system_thorough = [
'ccw_virtio',
'pxelinux',
'replay',
'topology',
'tuxrun',
]