aboutsummaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorThomas Huth <thuth@redhat.com>2025-08-19 13:23:45 +0200
committerThomas Huth <thuth@redhat.com>2025-08-27 09:46:55 +0200
commitdc8f7a1bf724cb90d37c5bdfcdb80a5c74befc11 (patch)
tree827e82827d1c0020bbda3c68f1e648fed3b15705 /tests
parent8de42cb748287d8dcc521d057b107f32d98e5edd (diff)
downloadqemu-dc8f7a1bf724cb90d37c5bdfcdb80a5c74befc11.zip
qemu-dc8f7a1bf724cb90d37c5bdfcdb80a5c74befc11.tar.gz
qemu-dc8f7a1bf724cb90d37c5bdfcdb80a5c74befc11.tar.bz2
tests/functional: Move avr tests into architecture specific folder
The tests/functional folder has become quite crowded, thus move the avr 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-9-thuth@redhat.com>
Diffstat (limited to 'tests')
-rw-r--r--tests/functional/avr/meson.build6
-rwxr-xr-xtests/functional/avr/test_mega2560.py (renamed from tests/functional/test_avr_mega2560.py)0
-rwxr-xr-xtests/functional/avr/test_uno.py (renamed from tests/functional/test_avr_uno.py)0
-rw-r--r--tests/functional/meson.build6
4 files changed, 7 insertions, 5 deletions
diff --git a/tests/functional/avr/meson.build b/tests/functional/avr/meson.build
new file mode 100644
index 0000000..7a2cb70
--- /dev/null
+++ b/tests/functional/avr/meson.build
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+tests_avr_system_thorough = [
+ 'mega2560',
+ 'uno',
+]
diff --git a/tests/functional/test_avr_mega2560.py b/tests/functional/avr/test_mega2560.py
index 6359b72..6359b72 100755
--- a/tests/functional/test_avr_mega2560.py
+++ b/tests/functional/avr/test_mega2560.py
diff --git a/tests/functional/test_avr_uno.py b/tests/functional/avr/test_uno.py
index adb3b73..adb3b73 100755
--- a/tests/functional/test_avr_uno.py
+++ b/tests/functional/avr/test_uno.py
diff --git a/tests/functional/meson.build b/tests/functional/meson.build
index 6989446..81eaa9c 100644
--- a/tests/functional/meson.build
+++ b/tests/functional/meson.build
@@ -12,6 +12,7 @@ endif
subdir('aarch64')
subdir('alpha')
subdir('arm')
+subdir('avr')
test_mips_timeouts = {
'mips_malta' : 480,
@@ -77,11 +78,6 @@ tests_generic_linuxuser = [
tests_generic_bsduser = [
]
-tests_avr_system_thorough = [
- 'avr_mega2560',
- 'avr_uno',
-]
-
tests_hppa_system_quick = [
'hppa_seabios',
]