diff options
author | Thomas Huth <thuth@redhat.com> | 2025-08-19 13:23:43 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-08-27 09:46:55 +0200 |
commit | e534eee5ba6aefd905c16bcb714d1ff8156a0c45 (patch) | |
tree | 18de408171a0ff6eaa60c0e00a5ebb56e00a615d /tests | |
parent | 96ced85b0c5664426518ad43f0e423092fbee933 (diff) | |
download | qemu-e534eee5ba6aefd905c16bcb714d1ff8156a0c45.zip qemu-e534eee5ba6aefd905c16bcb714d1ff8156a0c45.tar.gz qemu-e534eee5ba6aefd905c16bcb714d1ff8156a0c45.tar.bz2 |
tests/functional: Move alpha tests into architecture specific folder
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>
Diffstat (limited to 'tests')
-rw-r--r-- | tests/functional/alpha/meson.build | 10 | ||||
-rwxr-xr-x | tests/functional/alpha/test_clipper.py (renamed from tests/functional/test_alpha_clipper.py) | 0 | ||||
-rwxr-xr-x | tests/functional/alpha/test_migration.py (renamed from tests/functional/test_alpha_migration.py) | 0 | ||||
-rwxr-xr-x | tests/functional/alpha/test_replay.py (renamed from tests/functional/test_alpha_replay.py) | 0 | ||||
-rw-r--r-- | tests/functional/meson.build | 10 |
5 files changed, 11 insertions, 9 deletions
diff --git a/tests/functional/alpha/meson.build b/tests/functional/alpha/meson.build new file mode 100644 index 0000000..26a5b3f --- /dev/null +++ b/tests/functional/alpha/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +tests_alpha_system_quick = [ + 'migration', +] + +tests_alpha_system_thorough = [ + 'clipper', + 'replay', +] diff --git a/tests/functional/test_alpha_clipper.py b/tests/functional/alpha/test_clipper.py index c5d7181..c5d7181 100755 --- a/tests/functional/test_alpha_clipper.py +++ b/tests/functional/alpha/test_clipper.py diff --git a/tests/functional/test_alpha_migration.py b/tests/functional/alpha/test_migration.py index f11b523..f11b523 100755 --- a/tests/functional/test_alpha_migration.py +++ b/tests/functional/alpha/test_migration.py diff --git a/tests/functional/test_alpha_replay.py b/tests/functional/alpha/test_replay.py index 24a17ef..24a17ef 100755 --- a/tests/functional/test_alpha_replay.py +++ b/tests/functional/alpha/test_replay.py diff --git a/tests/functional/meson.build b/tests/functional/meson.build index 9cb6325..a7f8c88 100644 --- a/tests/functional/meson.build +++ b/tests/functional/meson.build @@ -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', ] |