diff options
| author | Thomas Huth <thuth@redhat.com> | 2025-08-19 13:23:49 +0200 |
|---|---|---|
| committer | Thomas Huth <thuth@redhat.com> | 2025-08-27 09:46:55 +0200 |
| commit | 0ae63d0e19b22d45cd354b428b4b530223f53d7b (patch) | |
| tree | 60b79d14c1300f5a22639b517a58828353ac3b2a /tests | |
| parent | 6bd38ef0f9af38364509005385ff2ac897ad3913 (diff) | |
| download | focaccia-qemu-0ae63d0e19b22d45cd354b428b4b530223f53d7b.tar.gz focaccia-qemu-0ae63d0e19b22d45cd354b428b4b530223f53d7b.zip | |
tests/functional: Move m68k tests into architecture specific folder
The tests/functional folder has become quite crowded, thus move the m68k 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-13-thuth@redhat.com>
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/functional/m68k/meson.build | 9 | ||||
| -rwxr-xr-x | tests/functional/m68k/test_mcf5208evb.py (renamed from tests/functional/test_m68k_mcf5208evb.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/m68k/test_nextcube.py (renamed from tests/functional/test_m68k_nextcube.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/m68k/test_q800.py (renamed from tests/functional/test_m68k_q800.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/m68k/test_replay.py (renamed from tests/functional/test_m68k_replay.py) | 0 | ||||
| -rwxr-xr-x | tests/functional/m68k/test_tuxrun.py (renamed from tests/functional/test_m68k_tuxrun.py) | 0 | ||||
| -rw-r--r-- | tests/functional/meson.build | 9 |
7 files changed, 10 insertions, 8 deletions
diff --git a/tests/functional/m68k/meson.build b/tests/functional/m68k/meson.build new file mode 100644 index 0000000000..e29044a6d7 --- /dev/null +++ b/tests/functional/m68k/meson.build @@ -0,0 +1,9 @@ +# SPDX-License-Identifier: GPL-2.0-or-later + +tests_m68k_system_thorough = [ + 'mcf5208evb', + 'nextcube', + 'replay', + 'q800', + 'tuxrun', +] diff --git a/tests/functional/test_m68k_mcf5208evb.py b/tests/functional/m68k/test_mcf5208evb.py index c7d1998933..c7d1998933 100755 --- a/tests/functional/test_m68k_mcf5208evb.py +++ b/tests/functional/m68k/test_mcf5208evb.py diff --git a/tests/functional/test_m68k_nextcube.py b/tests/functional/m68k/test_nextcube.py index 13c72bd136..13c72bd136 100755 --- a/tests/functional/test_m68k_nextcube.py +++ b/tests/functional/m68k/test_nextcube.py diff --git a/tests/functional/test_m68k_q800.py b/tests/functional/m68k/test_q800.py index b3e655346c..b3e655346c 100755 --- a/tests/functional/test_m68k_q800.py +++ b/tests/functional/m68k/test_q800.py diff --git a/tests/functional/test_m68k_replay.py b/tests/functional/m68k/test_replay.py index 213d6ae07e..213d6ae07e 100755 --- a/tests/functional/test_m68k_replay.py +++ b/tests/functional/m68k/test_replay.py diff --git a/tests/functional/test_m68k_tuxrun.py b/tests/functional/m68k/test_tuxrun.py index 7eacba135f..7eacba135f 100755 --- a/tests/functional/test_m68k_tuxrun.py +++ b/tests/functional/m68k/test_tuxrun.py diff --git a/tests/functional/meson.build b/tests/functional/meson.build index e2e66dcf52..d32dd4a371 100644 --- a/tests/functional/meson.build +++ b/tests/functional/meson.build @@ -16,6 +16,7 @@ subdir('avr') subdir('hppa') subdir('i386') subdir('loongarch64') +subdir('m68k') test_mips_timeouts = { 'mips_malta' : 480, @@ -81,14 +82,6 @@ tests_generic_linuxuser = [ tests_generic_bsduser = [ ] -tests_m68k_system_thorough = [ - 'm68k_mcf5208evb', - 'm68k_nextcube', - 'm68k_replay', - 'm68k_q800', - 'm68k_tuxrun', -] - tests_microblaze_system_thorough = [ 'microblaze_replay', 'microblaze_s3adsp1800' |