xref: /qemu/tests/functional/test_sparc_sun4m.py (revision 513823e7521a09ed7ad1e32e6454bac3b2cbf52d)
1#!/usr/bin/env python3
2#
3# Functional test that boots a Linux kernel on a sparc sun4m machine
4# and checks the console
5#
6# SPDX-License-Identifier: GPL-2.0-or-later
7
8from qemu_test import LinuxKernelTest, Asset
9
10
11class Sun4mTest(LinuxKernelTest):
12
13    ASSET_DAY11 = Asset(
14        'https://qemu-advcal.gitlab.io/qac-best-of-multiarch/download/day11.tar.xz',
15        'c776533ba756bf4dd3f1fc4c024fb50ef0d853e05c5f5ddf0900a32d1eaa49e0')
16
17    def test_sparc_ss20(self):
18        self.set_machine('SS-20')
19        self.archive_extract(self.ASSET_DAY11)
20        self.launch_kernel(self.scratch_file('day11', 'zImage.elf'),
21                           wait_for='QEMU advent calendar')
22
23if __name__ == '__main__':
24    LinuxKernelTest.main()
25