qemu

FORK: QEMU emulator
git clone https://git.neptards.moe/neptards/qemu.git
Log | Files | Refs | Submodules | LICENSE

machine_sparc64_sun4u.py (1238B)


      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 
     11 import os
     12 
     13 from avocado_qemu import wait_for_console_pattern
     14 from avocado.utils import archive
     15 from boot_linux_console import LinuxKernelTest
     16 
     17 class 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://qemu-advcal.gitlab.io'
     28                    '/qac-best-of-multiarch/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')