mirror of
https://github.com/Motorhead1991/qemu.git
synced 2025-07-27 04:13:53 -06:00

Yes, we are all C coders who try to write Python code for testing... but still, let's better avoid semicolons at the end of the lines to keep "pylint" happy! Reviewed-by: Philippe Mathieu-Daudé <philmd@linaro.org> Reviewed-by: Nina Schoetterl-Glausch <nsg@linux.ibm.com> Reviewed-by: Cédric Le Goater <clg@redhat.com> Message-ID: <20250327201305.996241-1-thuth@redhat.com> Signed-off-by: Thomas Huth <thuth@redhat.com>
25 lines
876 B
Python
25 lines
876 B
Python
#!/usr/bin/env python3
|
|
#
|
|
# Functional test that boots the ASPEED machines
|
|
#
|
|
# SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
from qemu_test import Asset
|
|
from aspeed import AspeedTest
|
|
|
|
|
|
class BletchleyMachine(AspeedTest):
|
|
|
|
ASSET_BLETCHLEY_FLASH = Asset(
|
|
'https://github.com/legoater/qemu-aspeed-boot/raw/master/images/bletchley-bmc/openbmc-20250128071329/obmc-phosphor-image-bletchley-20250128071329.static.mtd.xz',
|
|
'db21d04d47d7bb2a276f59d308614b4dfb70b9c7c81facbbca40a3977a2d8844')
|
|
|
|
def test_arm_ast2600_bletchley_openbmc(self):
|
|
image_path = self.uncompress(self.ASSET_BLETCHLEY_FLASH)
|
|
|
|
self.do_test_arm_aspeed_openbmc('bletchley-bmc', image=image_path,
|
|
uboot='2019.04', cpu_id='0xf00',
|
|
soc='AST2600 rev A3')
|
|
|
|
if __name__ == '__main__':
|
|
AspeedTest.main()
|