1 # Functional test that boots a Linux kernel and checks the console
3 # Copyright (c) 2020 Red Hat, Inc.
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.
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"""
22 def test_sparc64_sun4u(self
):
24 :avocado: tags=arch:sparc64
25 :avocado: tags=machine:sun4u
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
)
33 self
.vm
.add_args('-kernel', self
.workdir
+ '/day23/vmlinux',
34 '-append', self
.KERNEL_COMMON_COMMAND_LINE
)
36 wait_for_console_pattern(self
, 'Starting logging: OK')