Upstream: https://gitlab.com/qemu-project/qemu.git Upstream-Commit: d2e570cc0f97b936902a5b1b86b73c0f5998b475
36 lines
914 B
Python
Executable File
36 lines
914 B
Python
Executable File
#!/usr/bin/env python3
|
|
#
|
|
# SeaBIOS boot test for HPPA machines
|
|
#
|
|
# Copyright (c) 2024 Linaro, Ltd
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
from qemu_test import QemuSystemTest
|
|
from qemu_test import wait_for_console_pattern
|
|
|
|
class HppaSeabios(QemuSystemTest):
|
|
|
|
timeout = 5
|
|
MACH_BITS = {'B160L': 32, 'A400': 64}
|
|
|
|
def boot_seabios(self):
|
|
mach = self.machine
|
|
bits = self.MACH_BITS[mach]
|
|
self.vm.add_args('-no-shutdown')
|
|
self.vm.set_console()
|
|
self.vm.launch()
|
|
wait_for_console_pattern(self, f'SeaBIOS PA-RISC {bits}-bit Firmware')
|
|
wait_for_console_pattern(self, f'Emulated machine: HP {mach} ({bits}-bit')
|
|
|
|
def test_hppa_32(self):
|
|
self.set_machine('B160L')
|
|
self.boot_seabios()
|
|
|
|
def test_hppa_64(self):
|
|
self.set_machine('A400')
|
|
self.boot_seabios()
|
|
|
|
if __name__ == '__main__':
|
|
QemuSystemTest.main()
|