1# Functional test that boots a Linux kernel and checks the console
2#
3# Copyright (c) 2020 Red Hat, Inc.
4#
5# Author:
6#  Thomas Huth <thuth@redhat.com>
7#
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.
10
11import os
12
13from avocado_qemu import wait_for_console_pattern
14from avocado.utils import archive
15from boot_linux_console import LinuxKernelTest
16
17class Sun4uMachine(LinuxKernelTest):
18    """Boots the Linux kernel and checks that the console is operational"""
19
20    timeout = 90
21
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')
37