aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2025-08-19 13:23:55 +0200
committerThomas Huth <thuth@redhat.com>2025-08-27 09:46:55 +0200
commitbbb43ea3be12f09c284954b7b51ae8fea85ebe33 (patch)
tree2a0a01e067288d8180e913369fbc8e2cad29d139
parente1a8572a8d7a11627db22366d356d0daf0f6d559 (diff)
downloadqemu-bbb43ea3be12f09c284954b7b51ae8fea85ebe33.zip
qemu-bbb43ea3be12f09c284954b7b51ae8fea85ebe33.tar.gz
qemu-bbb43ea3be12f09c284954b7b51ae8fea85ebe33.tar.bz2
tests/functional: Move rx test into target-specific folders
Move the architecture specific test into an architecture specific subdirectory. 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-19-thuth@redhat.com>
-rw-r--r--MAINTAINERS2
-rw-r--r--tests/functional/meson.build5
-rw-r--r--tests/functional/rx/meson.build5
-rwxr-xr-xtests/functional/rx/test_gdbsim.py (renamed from tests/functional/test_rx_gdbsim.py)0
4 files changed, 7 insertions, 5 deletions
diff --git a/MAINTAINERS b/MAINTAINERS
index 8126254..c6410a5 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -1721,7 +1721,7 @@ R: Yoshinori Sato <yoshinori.sato@nifty.com>
S: Orphan
F: docs/system/target-rx.rst
F: hw/rx/rx-gdbsim.c
-F: tests/functional/test_rx_gdbsim.py
+F: tests/functional/rx/test_gdbsim.py
SH4 Machines
------------
diff --git a/tests/functional/meson.build b/tests/functional/meson.build
index 2d8f67f..7e7a6aa 100644
--- a/tests/functional/meson.build
+++ b/tests/functional/meson.build
@@ -28,6 +28,7 @@ subdir('ppc')
subdir('ppc64')
subdir('riscv32')
subdir('riscv64')
+subdir('rx')
test_s390x_timeouts = {
's390x_ccw_virtio' : 420,
@@ -58,10 +59,6 @@ tests_generic_linuxuser = [
tests_generic_bsduser = [
]
-tests_rx_system_thorough = [
- 'rx_gdbsim',
-]
-
tests_s390x_system_thorough = [
's390x_ccw_virtio',
's390x_pxelinux',
diff --git a/tests/functional/rx/meson.build b/tests/functional/rx/meson.build
new file mode 100644
index 0000000..6af83a9
--- /dev/null
+++ b/tests/functional/rx/meson.build
@@ -0,0 +1,5 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+tests_rx_system_thorough = [
+ 'gdbsim',
+]
diff --git a/tests/functional/test_rx_gdbsim.py b/tests/functional/rx/test_gdbsim.py
index 4924579..4924579 100755
--- a/tests/functional/test_rx_gdbsim.py
+++ b/tests/functional/rx/test_gdbsim.py