diff options
| author | Thomas Huth <thuth@redhat.com> | 2025-08-19 13:23:58 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-08-27 09:46:55 +0200 |
| commit | e76291a65457b1fe18b6bf7a90b1d022fa15bf9d (patch) | |
| tree | 7aba10b05d248fd7e45dc656df38cf682ed7f710 /tests | |
| parent | 58e95a05dec8bb0c739a2b7192b6d0a96d1a99a5 (diff) | |
| download | focaccia-qemu-e76291a65457b1fe18b6bf7a90b1d022fa15bf9d.tar.gz focaccia-qemu-e76291a65457b1fe18b6bf7a90b1d022fa15bf9d.zip | |
tests/functional: Move sparc/sparc64 tests into target-specific folders
The tests/functional folder has become quite crowded, thus move the sparc 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-22-thuth@redhat.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/functional/meson.build | 20 | ||||
| -rw-r--r-- | tests/functional/sparc/meson.build | 10 | ||||
| -rwxr-xr-x | tests/functional/sparc/test_migration.py (renamed from tests/functional/test_sparc_migration.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/sparc/test_replay.py (renamed from tests/functional/test_sparc_replay.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/sparc/test_sun4m.py (renamed from tests/functional/test_sparc_sun4m.py) | 0 | ||||
| -rw-r--r-- | tests/functional/sparc64/meson.build | 10 | ||||
| -rwxr-xr-x | tests/functional/sparc64/test_migration.py (renamed from tests/functional/test_sparc64_migration.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/sparc64/test_sun4u.py (renamed from tests/functional/test_sparc64_sun4u.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/sparc64/test_tuxrun.py (renamed from tests/functional/test_sparc64_tuxrun.py) | 0 |
9 files changed, 22 insertions, 18 deletions
diff --git a/tests/functional/meson.build b/tests/functional/meson.build index ce713509e3..00d18dba3c 100644 --- a/tests/functional/meson.build +++ b/tests/functional/meson.build @@ -32,6 +32,8 @@ subdir('rx') subdir('s390x') subdir('sh4') subdir('sh4eb') +subdir('sparc') +subdir('sparc64') test_x86_64_timeouts = { 'acpi_bits' : 420, @@ -54,24 +56,6 @@ tests_generic_linuxuser = [ tests_generic_bsduser = [ ] -tests_sparc_system_quick = [ - 'sparc_migration', -] - -tests_sparc_system_thorough = [ - 'sparc_replay', - 'sparc_sun4m', -] - -tests_sparc64_system_quick = [ - 'sparc64_migration', -] - -tests_sparc64_system_thorough = [ - 'sparc64_sun4u', - 'sparc64_tuxrun', -] - tests_x86_64_system_quick = [ 'cpu_queries', 'mem_addr_space', diff --git a/tests/functional/sparc/meson.build b/tests/functional/sparc/meson.build new file mode 100644 index 0000000000..88732becd8 --- /dev/null +++ b/tests/functional/sparc/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +tests_sparc_system_quick = [ + 'migration', +] + +tests_sparc_system_thorough = [ + 'replay', + 'sun4m', +] diff --git a/tests/functional/test_sparc_migration.py b/tests/functional/sparc/test_migration.py index dd6d5783b1..dd6d5783b1 100755 --- a/tests/functional/test_sparc_migration.py +++ b/tests/functional/sparc/test_migration.py diff --git a/tests/functional/test_sparc_replay.py b/tests/functional/sparc/test_replay.py index 865d6486f9..865d6486f9 100755 --- a/tests/functional/test_sparc_replay.py +++ b/tests/functional/sparc/test_replay.py diff --git a/tests/functional/test_sparc_sun4m.py b/tests/functional/sparc/test_sun4m.py index 7cd28ebdd1..7cd28ebdd1 100755 --- a/tests/functional/test_sparc_sun4m.py +++ b/tests/functional/sparc/test_sun4m.py diff --git a/tests/functional/sparc64/meson.build b/tests/functional/sparc64/meson.build new file mode 100644 index 0000000000..2e04e7d4f3 --- /dev/null +++ b/tests/functional/sparc64/meson.build @@ -0,0 +1,10 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +tests_sparc64_system_quick = [ + 'migration', +] + +tests_sparc64_system_thorough = [ + 'sun4u', + 'tuxrun', +] diff --git a/tests/functional/test_sparc64_migration.py b/tests/functional/sparc64/test_migration.py index a8a6c73c35..a8a6c73c35 100755 --- a/tests/functional/test_sparc64_migration.py +++ b/tests/functional/sparc64/test_migration.py diff --git a/tests/functional/test_sparc64_sun4u.py b/tests/functional/sparc64/test_sun4u.py index 27ac289659..27ac289659 100755 --- a/tests/functional/test_sparc64_sun4u.py +++ b/tests/functional/sparc64/test_sun4u.py diff --git a/tests/functional/test_sparc64_tuxrun.py b/tests/functional/sparc64/test_tuxrun.py index 0d7b43dd74..0d7b43dd74 100755 --- a/tests/functional/test_sparc64_tuxrun.py +++ b/tests/functional/sparc64/test_tuxrun.py |