| 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 | |
| 14 | from qemu_test import Asset |
| 15 | from qemu_test.tuxruntest import TuxRunBaselineTest |
| 16 | |
| 17 | class TuxRunPPC32Test(TuxRunBaselineTest): |
| 18 | |
| 19 | ASSET_PPC32_KERNEL = Asset( |
| 20 | 'https://storage.tuxboot.com/buildroot/20241119/ppc32/uImage', |
| 21 | 'aa5d81deabdb255a318c4bc5ffd6fdd2b5da1ef39f1955dcc35b671d258b68e9') |
| 22 | ASSET_PPC32_ROOTFS = Asset( |
| 23 | 'https://storage.tuxboot.com/buildroot/20241119/ppc32/rootfs.ext4.zst', |
| 24 | '67554f830269d6bf53b67c7dd206bcc821e463993d526b1644066fea8117019b') |
| 25 | |
| 26 | def test_ppc32(self): |
| 27 | self.set_machine('ppce500') |
| 28 | self.cpu='e500mc' |
| 29 | self.wait_for_shutdown=False |
| 30 | self.common_tuxrun(kernel_asset=self.ASSET_PPC32_KERNEL, |
| 31 | rootfs_asset=self.ASSET_PPC32_ROOTFS, |
| 32 | drive="virtio-blk-pci") |
| 33 | |
| 34 | if __name__ == '__main__': |
| 35 | TuxRunBaselineTest.main() |