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/functional/m68k/test_q800.py | |
| 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/functional/m68k/test_q800.py')
| -rwxr-xr-x | tests/functional/m68k/test_q800.py | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/functional/m68k/test_q800.py b/tests/functional/m68k/test_q800.py new file mode 100755 index 0000000000..b3e655346c --- /dev/null +++ b/tests/functional/m68k/test_q800.py @@ -0,0 +1,37 @@ +#!/usr/bin/env python3 +# +# Functional test for testing the q800 m68k machine +# +# This work is licensed under the terms of the GNU GPL, version 2 or +# later. See the COPYING file in the top-level directory. + +from qemu_test import LinuxKernelTest, Asset + +class Q800MachineTest(LinuxKernelTest): + + ASSET_KERNEL = Asset( + ('https://snapshot.debian.org/' + 'archive/debian-ports/20191021T083923Z/pool-m68k/main/l/linux/' + 'kernel-image-5.3.0-1-m68k-di_5.3.7-1_m68k.udeb'), + '949e50d74d4b9bc15d26c06d402717b7a4c0e32ff8100014f5930d8024de7b73') + + def test_m68k_q800(self): + self.set_machine('q800') + + kernel_path = self.archive_extract(self.ASSET_KERNEL, + member='boot/vmlinux-5.3.0-1-m68k') + + self.vm.set_console() + kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE + + 'console=ttyS0 vga=off') + self.vm.add_args('-kernel', kernel_path, + '-append', kernel_command_line, + '-audio', 'none') + self.vm.launch() + console_pattern = 'Kernel command line: %s' % kernel_command_line + self.wait_for_console_pattern(console_pattern) + console_pattern = 'No filesystem could mount root' + self.wait_for_console_pattern(console_pattern) + +if __name__ == '__main__': + LinuxKernelTest.main() |