diff options
author | Thomas Huth <thuth@redhat.com> | 2025-08-19 13:23:51 +0200 |
---|---|---|
committer | Thomas Huth <thuth@redhat.com> | 2025-08-27 09:46:55 +0200 |
commit | f227c45e5b6e928a413fcf7176b59aac4e430c82 (patch) | |
tree | 4e308bcfaa37a9b4272e4968eacaa45094332c16 /tests/functional/test_mips64_malta.py | |
parent | 67adbc8b6f40f6a2370d4a0ba479d3778d147cbc (diff) | |
download | qemu-f227c45e5b6e928a413fcf7176b59aac4e430c82.zip qemu-f227c45e5b6e928a413fcf7176b59aac4e430c82.tar.gz qemu-f227c45e5b6e928a413fcf7176b59aac4e430c82.tar.bz2 |
tests/functional: Move mips tests into target-specific folders
The tests/functional folder has become quite crowded, thus move the
mips 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-15-thuth@redhat.com>
Diffstat (limited to 'tests/functional/test_mips64_malta.py')
-rwxr-xr-x | tests/functional/test_mips64_malta.py | 35 |
1 files changed, 0 insertions, 35 deletions
diff --git a/tests/functional/test_mips64_malta.py b/tests/functional/test_mips64_malta.py deleted file mode 100755 index 53c3e0c..0000000 --- a/tests/functional/test_mips64_malta.py +++ /dev/null @@ -1,35 +0,0 @@ -#!/usr/bin/env python3 -# -# Functional tests for the big-endian 64-bit MIPS Malta board -# -# SPDX-License-Identifier: GPL-2.0-or-later - -from qemu_test import LinuxKernelTest, Asset -from test_mips_malta import mips_check_wheezy - - -class MaltaMachineConsole(LinuxKernelTest): - - ASSET_WHEEZY_KERNEL = Asset( - ('https://people.debian.org/~aurel32/qemu/mips/' - 'vmlinux-3.2.0-4-5kc-malta'), - '3e4ec154db080b3f1839f04dde83120654a33e5e1716863de576c47cb94f68f6') - - ASSET_WHEEZY_DISK = Asset( - ('https://people.debian.org/~aurel32/qemu/mips/' - 'debian_wheezy_mips_standard.qcow2'), - 'de03599285b8382ad309309a6c4869f6c6c42a5cfc983342bab9ec0dfa7849a2') - - def test_wheezy(self): - kernel_path = self.ASSET_WHEEZY_KERNEL.fetch() - image_path = self.ASSET_WHEEZY_DISK.fetch() - kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE - + 'console=ttyS0 root=/dev/sda1') - mips_check_wheezy(self, - kernel_path, image_path, kernel_command_line, cpuinfo='MIPS 20Kc', - dl_file='/boot/initrd.img-3.2.0-4-5kc-malta', - hsum='d98b953bb4a41c0fc0fd8d19bbc691c08989ac52568c1d3054d92dfd890d3f06') - - -if __name__ == '__main__': - LinuxKernelTest.main() |