1#!/usr/bin/env python3 2# 3# Functional test that boots known good tuxboot images the same way 4# that tuxrun (www.tuxrun.org) does. This tool is used by things like 5# the LKFT project to run regression tests on kernels. 6# 7# Copyright (c) 2023 Linaro Ltd. 8# 9# Author: 10# Alex Bennée <alex.bennee@linaro.org> 11# 12# SPDX-License-Identifier: GPL-2.0-or-later 13 14from qemu_test import Asset 15from qemu_test.tuxruntest import TuxRunBaselineTest 16 17class TuxRunSparc64Test(TuxRunBaselineTest): 18 19 ASSET_SPARC64_KERNEL = Asset( 20 'https://storage.tuxboot.com/buildroot/20241119/sparc64/vmlinux', 21 'a04cfb2e70a264051d161fdd93aabf4b2a9472f2e435c14ed18c5848c5fed261') 22 ASSET_SPARC64_ROOTFS = Asset( 23 'https://storage.tuxboot.com/buildroot/20241119/sparc64/rootfs.ext4.zst', 24 '479c3dc104c82b68be55e2c0c5c38cd473d0b37ad4badccde4775bb88ce34611') 25 26 def test_sparc64(self): 27 self.root='sda' 28 self.wait_for_shutdown=False 29 self.common_tuxrun(kernel_asset=self.ASSET_SPARC64_KERNEL, 30 rootfs_asset=self.ASSET_SPARC64_ROOTFS, 31 drive="driver=ide-hd,bus=ide.0,unit=0") 32 33if __name__ == '__main__': 34 TuxRunBaselineTest.main() 35