tests/functional: Move or1k tests into target-specific folders

The tests/functional folder has become quite crowded, thus move the
openrisc 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-16-thuth@redhat.com>
This commit is contained in:
Thomas Huth
2025-08-19 13:23:52 +02:00
parent f227c45e5b
commit ff94df87ca
5 changed files with 8 additions and 6 deletions

View File

@@ -1457,7 +1457,7 @@ S: Maintained
F: docs/system/openrisc/or1k-sim.rst
F: hw/intc/ompic.c
F: hw/openrisc/openrisc_sim.c
F: tests/functional/test_or1k_sim.py
F: tests/functional/or1k/test_sim.py
PowerPC Machines
----------------

View File

@@ -23,6 +23,7 @@ subdir('mips')
subdir('mipsel')
subdir('mips64')
subdir('mips64el')
subdir('or1k')
test_ppc_timeouts = {
'ppc_40p' : 240,
@@ -70,11 +71,6 @@ tests_generic_linuxuser = [
tests_generic_bsduser = [
]
tests_or1k_system_thorough = [
'or1k_replay',
'or1k_sim',
]
tests_ppc_system_quick = [
'ppc_migration',
'ppc_74xx',

View File

@@ -0,0 +1,6 @@
# SPDX-License-Identifier: GPL-2.0-or-later
tests_or1k_system_thorough = [
'replay',
'sim',
]