]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/functional: Move alpha tests into architecture specific folder
authorThomas Huth <thuth@redhat.com>
Tue, 19 Aug 2025 11:23:43 +0000 (13:23 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 27 Aug 2025 07:46:55 +0000 (09:46 +0200)
The tests/functional folder has become quite crowded already, some
restructuring would be helpful here. Thus move the alpha 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-7-thuth@redhat.com>

MAINTAINERS
tests/functional/alpha/meson.build [new file with mode: 0644]
tests/functional/alpha/test_clipper.py [moved from tests/functional/test_alpha_clipper.py with 100% similarity]
tests/functional/alpha/test_migration.py [moved from tests/functional/test_alpha_migration.py with 100% similarity]
tests/functional/alpha/test_replay.py [moved from tests/functional/test_alpha_replay.py with 100% similarity]
tests/functional/meson.build

index a2a5ccea7b6e7df7c92b3d50ae7e704a6d74b5fa..8115aae61830034a099e605507857b3c9a7ae0ba 100644 (file)
@@ -189,6 +189,7 @@ M: Richard Henderson <richard.henderson@linaro.org>
 S: Maintained
 F: target/alpha/
 F: tests/tcg/alpha/
+F: tests/functional/alpha/
 F: disas/alpha.c
 
 ARM TCG CPUs
@@ -656,7 +657,7 @@ S: Maintained
 F: hw/alpha/
 F: hw/isa/smc37c669-superio.c
 F: tests/tcg/alpha/system/
-F: tests/functional/test_alpha_clipper.py
+F: tests/functional/alpha/test_clipper.py
 
 ARM Machines
 ------------
diff --git a/tests/functional/alpha/meson.build b/tests/functional/alpha/meson.build
new file mode 100644 (file)
index 0000000..26a5b3f
--- /dev/null
@@ -0,0 +1,10 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+tests_alpha_system_quick = [
+  'migration',
+]
+
+tests_alpha_system_thorough = [
+  'clipper',
+  'replay',
+]
index 9cb6325360fd4fa8c5dcaf06f226f3e6f49e4af0..a7f8c88a078fd0b3c2395cf5de7fd63425a6fcd1 100644 (file)
@@ -10,6 +10,7 @@ if get_option('tcg_interpreter')
 endif
 
 subdir('aarch64')
+subdir('alpha')
 
 test_arm_timeouts = {
   'arm_aspeed_palmetto' : 120,
@@ -96,15 +97,6 @@ tests_generic_linuxuser = [
 tests_generic_bsduser = [
 ]
 
-tests_alpha_system_quick = [
-  'alpha_migration',
-]
-
-tests_alpha_system_thorough = [
-  'alpha_clipper',
-  'alpha_replay',
-]
-
 tests_arm_system_quick = [
   'arm_migration',
 ]