]> git.ipfire.org Git - thirdparty/qemu.git/commitdiff
tests/functional: Move avr tests into architecture specific folder
authorThomas Huth <thuth@redhat.com>
Tue, 19 Aug 2025 11:23:45 +0000 (13:23 +0200)
committerThomas Huth <thuth@redhat.com>
Wed, 27 Aug 2025 07:46:55 +0000 (09:46 +0200)
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>

MAINTAINERS
tests/functional/avr/meson.build [new file with mode: 0644]
tests/functional/avr/test_mega2560.py [moved from tests/functional/test_avr_mega2560.py with 100% similarity]
tests/functional/avr/test_uno.py [moved from tests/functional/test_avr_uno.py with 100% similarity]
tests/functional/meson.build

index 1eb964feca49ae82090f2d3429de07cf7abc2a32..d01afcbea6d2fbff0857a9f0742cd419297ccced 100644 (file)
@@ -221,7 +221,7 @@ S: Maintained
 F: docs/system/target-avr.rst
 F: gdb-xml/avr-cpu.xml
 F: target/avr/
-F: tests/functional/test_avr_*.py
+F: tests/functional/avr/
 
 Hexagon TCG CPUs
 M: Brian Cain <brian.cain@oss.qualcomm.com>
@@ -1249,7 +1249,7 @@ Arduino
 M: Philippe Mathieu-Daudé <philmd@linaro.org>
 S: Maintained
 F: hw/avr/arduino.c
-F: tests/functional/test_avr_uno.py
+F: tests/functional/avr/test_uno.py
 
 HP-PARISC Machines
 ------------------
diff --git a/tests/functional/avr/meson.build b/tests/functional/avr/meson.build
new file mode 100644 (file)
index 0000000..7a2cb70
--- /dev/null
@@ -0,0 +1,6 @@
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+tests_avr_system_thorough = [
+  'mega2560',
+  'uno',
+]
index 6989446d1c47fcb5daf91c76d46aef7bb788d6db..81eaa9c218c77005a341f69358993eaa2c68c6a0 100644 (file)
@@ -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',
 ]