mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-08-04 00:03:54 -06:00

Running this test gives us a deprecation warning telling that this machine type is no longer supported: Output: qemu-system-ppc: Machine type 'taihu' is deprecated: incomplete, use 'ref405ep' instead Moreover, this test fails to pass running in an IBM POWER host when building QEMU with --disable-tcg. Since the machine type is already being considered deprecated let's not bother fixing the test with --disable-tcg. Remove test_ppc_taihu(). Signed-off-by: Daniel Henrique Barboza <danielhb413@gmail.com> Message-Id: <20220310183011.110391-4-danielhb413@gmail.com> Signed-off-by: Cédric Le Goater <clg@kaod.org>
34 lines
1.2 KiB
Python
34 lines
1.2 KiB
Python
# Test that the U-Boot firmware boots on ppc 405 machines and check the console
|
|
#
|
|
# Copyright (c) 2021 Red Hat, Inc.
|
|
#
|
|
# This work is licensed under the terms of the GNU GPL, version 2 or
|
|
# later. See the COPYING file in the top-level directory.
|
|
|
|
from avocado.utils import archive
|
|
from avocado_qemu import QemuSystemTest
|
|
from avocado_qemu import wait_for_console_pattern
|
|
from avocado_qemu import exec_command_and_wait_for_pattern
|
|
|
|
class Ppc405Machine(QemuSystemTest):
|
|
|
|
timeout = 90
|
|
|
|
def do_test_ppc405(self):
|
|
uboot_url = ('https://gitlab.com/huth/u-boot/-/raw/'
|
|
'taihu-2021-10-09/u-boot-taihu.bin')
|
|
uboot_hash = ('3208940e908a5edc7c03eab072c60f0dcfadc2ab');
|
|
file_path = self.fetch_asset(uboot_url, asset_hash=uboot_hash)
|
|
self.vm.set_console(console_index=1)
|
|
self.vm.add_args('-bios', file_path)
|
|
self.vm.launch()
|
|
wait_for_console_pattern(self, 'AMCC PPC405EP Evaluation Board')
|
|
exec_command_and_wait_for_pattern(self, 'reset', 'AMCC PowerPC 405EP')
|
|
|
|
def test_ppc_ref405ep(self):
|
|
"""
|
|
:avocado: tags=arch:ppc
|
|
:avocado: tags=machine:ref405ep
|
|
:avocado: tags=cpu:405ep
|
|
"""
|
|
self.do_test_ppc405()
|