xref: /qemu/tests/functional/test_x86_64_tuxrun.py (revision 70ce076fa6dff60585c229a4b641b13e64bf03cf)
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 TuxRunX86Test(TuxRunBaselineTest):
18
19    ASSET_X86_64_KERNEL = Asset(
20        'https://storage.tuxboot.com/buildroot/20241119/x86_64/bzImage',
21        'f57bfc6553bcd6e0a54aab86095bf642b33b5571d14e3af1731b18c87ed5aef8')
22    ASSET_X86_64_ROOTFS = Asset(
23        'https://storage.tuxboot.com/buildroot/20241119/x86_64/rootfs.ext4.zst',
24        '4b8b2a99117519c5290e1202cb36eb6c7aaba92b357b5160f5970cf5fb78a751')
25
26    def test_x86_64(self):
27        self.set_machine('q35')
28        self.cpu="Nehalem"
29        self.root='sda'
30        self.wait_for_shutdown=False
31        self.common_tuxrun(kernel_asset=self.ASSET_X86_64_KERNEL,
32                           rootfs_asset=self.ASSET_X86_64_ROOTFS,
33                           drive="driver=ide-hd,bus=ide.0,unit=0")
34
35if __name__ == '__main__':
36    TuxRunBaselineTest.main()
37