Merge remote-tracking branch 'remotes/mst/tags/for_upstream' into staging
[qemu/ar7.git] / tests / acceptance / machine_sparc64_sun4u.py
blob458165500ec440477688d3a4e53bf2397b805e9f
1 # Functional test that boots a Linux kernel and checks the console
3 # Copyright (c) 2020 Red Hat, Inc.
5 # Author:
6 # Thomas Huth <thuth@redhat.com>
8 # This work is licensed under the terms of the GNU GPL, version 2 or
9 # later. See the COPYING file in the top-level directory.
11 import os
13 from avocado_qemu import wait_for_console_pattern
14 from avocado.utils import archive
15 from boot_linux_console import LinuxKernelTest
17 class Sun4uMachine(LinuxKernelTest):
18 """Boots the Linux kernel and checks that the console is operational"""
20 timeout = 90
22 def test_sparc64_sun4u(self):
23 """
24 :avocado: tags=arch:sparc64
25 :avocado: tags=machine:sun4u
26 """
27 tar_url = ('https://www.qemu-advent-calendar.org'
28 '/2018/download/day23.tar.xz')
29 tar_hash = '142db83cd974ffadc4f75c8a5cad5bcc5722c240'
30 file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
31 archive.extract(file_path, self.workdir)
32 self.vm.set_console()
33 self.vm.add_args('-kernel', self.workdir + '/day23/vmlinux',
34 '-append', self.KERNEL_COMMON_COMMAND_LINE)
35 self.vm.launch()
36 wait_for_console_pattern(self, 'Starting logging: OK')