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_tuxrun.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_tuxrun.py')
| -rwxr-xr-x | tests/functional/m68k/test_tuxrun.py | 34 |
1 files changed, 34 insertions, 0 deletions
diff --git a/tests/functional/m68k/test_tuxrun.py b/tests/functional/m68k/test_tuxrun.py new file mode 100755 index 0000000000..7eacba135f --- /dev/null +++ b/tests/functional/m68k/test_tuxrun.py @@ -0,0 +1,34 @@ +#!/usr/bin/env python3 +# +# Functional test that boots known good tuxboot images the same way +# that tuxrun (www.tuxrun.org) does. This tool is used by things like +# the LKFT project to run regression tests on kernels. +# +# Copyright (c) 2024 Linaro Ltd. +# +# Author: +# Alex Bennée <alex.bennee@linaro.org> +# +# SPDX-License-Identifier: GPL-2.0-or-later + +from qemu_test import Asset +from qemu_test.tuxruntest import TuxRunBaselineTest + +class TuxRunM68KTest(TuxRunBaselineTest): + + ASSET_M68K_KERNEL = Asset( + 'https://storage.tuxboot.com/buildroot/20241119/m68k/vmlinux', + '7754e1d5cec753ccf1dc6894729a7f54c1a4965631ebf56df8e4ce1163ad19d8') + ASSET_M68K_ROOTFS = Asset( + 'https://storage.tuxboot.com/buildroot/20241119/m68k/rootfs.ext4.zst', + '557962ffff265607912e82232cf21adbe0e4e5a88e1e1d411ce848c37f0213e9') + + def test_m68k(self): + self.set_machine('virt') + self.cpu="m68040" + self.common_tuxrun(kernel_asset=self.ASSET_M68K_KERNEL, + rootfs_asset=self.ASSET_M68K_ROOTFS, + drive="virtio-blk-device") + +if __name__ == '__main__': + TuxRunBaselineTest.main() |