xref: /qemu/tests/functional/test_mips_replay.py (revision f194f0cab092f976c80e2ec226aa20fb9c35cb1f)
1*f194f0caSThomas Huth#!/usr/bin/env python3
2*f194f0caSThomas Huth#
3*f194f0caSThomas Huth# Replay tests for the big-endian 32-bit MIPS Malta board
4*f194f0caSThomas Huth#
5*f194f0caSThomas Huth# SPDX-License-Identifier: GPL-2.0-or-later
6*f194f0caSThomas Huth
7*f194f0caSThomas Huthfrom qemu_test import Asset, skipSlowTest, exec_command_and_wait_for_pattern
8*f194f0caSThomas Huthfrom replay_kernel import ReplayKernelBase
9*f194f0caSThomas Huth
10*f194f0caSThomas Huth
11*f194f0caSThomas Huthclass MipsReplay(ReplayKernelBase):
12*f194f0caSThomas Huth
13*f194f0caSThomas Huth    ASSET_KERNEL_2_63_2 = Asset(
14*f194f0caSThomas Huth        ('http://snapshot.debian.org/archive/debian/'
15*f194f0caSThomas Huth         '20130217T032700Z/pool/main/l/linux-2.6/'
16*f194f0caSThomas Huth         'linux-image-2.6.32-5-4kc-malta_2.6.32-48_mips.deb'),
17*f194f0caSThomas Huth        '16ca524148afb0626f483163e5edf352bc1ab0e4fc7b9f9d473252762f2c7a43')
18*f194f0caSThomas Huth
19*f194f0caSThomas Huth    def test_replay_mips_malta(self):
20*f194f0caSThomas Huth        self.set_machine('malta')
21*f194f0caSThomas Huth        kernel_path = self.archive_extract(self.ASSET_KERNEL_2_63_2,
22*f194f0caSThomas Huth                                     member='boot/vmlinux-2.6.32-5-4kc-malta')
23*f194f0caSThomas Huth        kernel_command_line = self.KERNEL_COMMON_COMMAND_LINE + 'console=ttyS0'
24*f194f0caSThomas Huth        console_pattern = 'Kernel command line: %s' % kernel_command_line
25*f194f0caSThomas Huth        self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5)
26*f194f0caSThomas Huth
27*f194f0caSThomas Huth    ASSET_KERNEL_4_5_0 = Asset(
28*f194f0caSThomas Huth        ('http://snapshot.debian.org/archive/debian/'
29*f194f0caSThomas Huth         '20160601T041800Z/pool/main/l/linux/'
30*f194f0caSThomas Huth         'linux-image-4.5.0-2-4kc-malta_4.5.5-1_mips.deb'),
31*f194f0caSThomas Huth        '526b17d5889840888b76fc2c36a0ebde182c9b1410a3a1e68203c3b160eb2027')
32*f194f0caSThomas Huth
33*f194f0caSThomas Huth    ASSET_INITRD = Asset(
34*f194f0caSThomas Huth        ('https://github.com/groeck/linux-build-test/raw/'
35*f194f0caSThomas Huth         '8584a59ed9e5eb5ee7ca91f6d74bbb06619205b8/rootfs/'
36*f194f0caSThomas Huth         'mips/rootfs.cpio.gz'),
37*f194f0caSThomas Huth        'dcfe3a7fe3200da3a00d176b95caaa086495eb158f2bff64afc67d7e1eb2cddc')
38*f194f0caSThomas Huth
39*f194f0caSThomas Huth    @skipSlowTest()
40*f194f0caSThomas Huth    def test_replay_mips_malta_cpio(self):
41*f194f0caSThomas Huth        self.set_machine('malta')
42*f194f0caSThomas Huth        kernel_path = self.archive_extract(self.ASSET_KERNEL_4_5_0,
43*f194f0caSThomas Huth                                      member='boot/vmlinux-4.5.0-2-4kc-malta')
44*f194f0caSThomas Huth        initrd_path = self.uncompress(self.ASSET_INITRD)
45*f194f0caSThomas Huth
46*f194f0caSThomas Huth        kernel_command_line = (self.KERNEL_COMMON_COMMAND_LINE +
47*f194f0caSThomas Huth                               'console=ttyS0 console=tty '
48*f194f0caSThomas Huth                               'rdinit=/sbin/init noreboot')
49*f194f0caSThomas Huth        console_pattern = 'Boot successful.'
50*f194f0caSThomas Huth        self.run_rr(kernel_path, kernel_command_line, console_pattern, shift=5,
51*f194f0caSThomas Huth                    args=('-initrd', initrd_path))
52*f194f0caSThomas Huth
53*f194f0caSThomas Huth
54*f194f0caSThomas Huthif __name__ == '__main__':
55*f194f0caSThomas Huth    ReplayKernelBase.main()
56