hw/mips/malta: turn off x86 specific features of PIIX4_PM
[qemu/ar7.git] / tests / avocado / ppc_bamboo.py
blob102ff252dff44996ecb811d82769bab33aced2fa
1 # Test that Linux kernel boots on the ppc bamboo board and check the console
3 # Copyright (c) 2021 Red Hat
5 # This work is licensed under the terms of the GNU GPL, version 2 or
6 # later. See the COPYING file in the top-level directory.
8 from avocado.utils import archive
9 from avocado_qemu import QemuSystemTest
10 from avocado_qemu import wait_for_console_pattern
11 from avocado_qemu import exec_command_and_wait_for_pattern
13 class BambooMachine(QemuSystemTest):
15 timeout = 90
17 def test_ppc_bamboo(self):
18 """
19 :avocado: tags=arch:ppc
20 :avocado: tags=machine:bamboo
21 :avocado: tags=cpu:440epb
22 :avocado: tags=device:rtl8139
23 :avocado: tags=accel:tcg
24 """
25 self.require_accelerator("tcg")
26 tar_url = ('http://landley.net/aboriginal/downloads/binaries/'
27 'system-image-powerpc-440fp.tar.gz')
28 tar_hash = '53e5f16414b195b82d2c70272f81c2eedb39bad9'
29 file_path = self.fetch_asset(tar_url, asset_hash=tar_hash)
30 archive.extract(file_path, self.workdir)
31 self.vm.set_console()
32 self.vm.add_args('-kernel', self.workdir +
33 '/system-image-powerpc-440fp/linux',
34 '-initrd', self.workdir +
35 '/system-image-powerpc-440fp/rootfs.cpio.gz',
36 '-nic', 'user,model=rtl8139,restrict=on')
37 self.vm.launch()
38 wait_for_console_pattern(self, 'Type exit when done')
39 exec_command_and_wait_for_pattern(self, 'ping 10.0.2.2',
40 '10.0.2.2 is alive!')
41 exec_command_and_wait_for_pattern(self, 'halt', 'System Halted')