[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[PULL 06/18] tests/functional: Add a functional test for the collie boar
From: |
Peter Maydell |
Subject: |
[PULL 06/18] tests/functional: Add a functional test for the collie board |
Date: |
Tue, 29 Oct 2024 15:10:36 +0000 |
Add a functional test for the collie board that uses the kernel and
rootfs provided by Guenter Roeck in the linux-test-downloads repo:
https://github.com/groeck/linux-test-downloads/
This just boots Linux with a userspace that immediately reboots
the board, so we wait for the reboot log line.
Signed-off-by: Peter Maydell <peter.maydell@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-id: 20241017163247.711244-2-peter.maydell@linaro.org
---
MAINTAINERS | 1 +
tests/functional/meson.build | 1 +
tests/functional/test_arm_collie.py | 31 +++++++++++++++++++++++++++++
3 files changed, 33 insertions(+)
create mode 100755 tests/functional/test_arm_collie.py
diff --git a/MAINTAINERS b/MAINTAINERS
index f48d9142b8a..6b1fa225d6e 100644
--- a/MAINTAINERS
+++ b/MAINTAINERS
@@ -929,6 +929,7 @@ F: hw/arm/strongarm*
F: hw/gpio/zaurus.c
F: include/hw/arm/sharpsl.h
F: docs/system/arm/collie.rst
+F: tests/functional/test_arm_collie.py
Stellaris
M: Peter Maydell <peter.maydell@linaro.org>
diff --git a/tests/functional/meson.build b/tests/functional/meson.build
index 97c1c597e86..9538e103d6e 100644
--- a/tests/functional/meson.build
+++ b/tests/functional/meson.build
@@ -54,6 +54,7 @@ tests_alpha_system_thorough = [
tests_arm_system_thorough = [
'arm_aspeed',
'arm_canona1100',
+ 'arm_collie',
'arm_integratorcp',
'arm_raspi2',
'arm_vexpress',
diff --git a/tests/functional/test_arm_collie.py
b/tests/functional/test_arm_collie.py
new file mode 100755
index 00000000000..7e144a0a8fb
--- /dev/null
+++ b/tests/functional/test_arm_collie.py
@@ -0,0 +1,31 @@
+#!/usr/bin/env python3
+#
+# Functional test that boots a Linux kernel on a collie machine
+# and checks the console
+#
+# SPDX-License-Identifier: GPL-2.0-or-later
+
+from qemu_test import LinuxKernelTest, Asset
+from qemu_test.utils import archive_extract
+
+class CollieTest(LinuxKernelTest):
+
+ ASSET_ZIMAGE = Asset(
+
'https://github.com/groeck/linux-test-downloads/raw/225223f2ad7d637b34426810bf6c3b727b76a718/collie/zImage',
+ '10ace8abf9e0875ef8a83b8829cc3b5b50bc6d7bc3ca29f19f49f5673a43c13b')
+
+ ASSET_ROOTFS = Asset(
+
'https://github.com/groeck/linux-test-downloads/raw/225223f2ad7d637b34426810bf6c3b727b76a718/collie/rootfs-sa110.cpio',
+ '89ccaaa5c6b33331887047e1618ffe81b0f55909173944347d5d2426f3bcc1f2')
+
+ def test_arm_collie(self):
+ self.set_machine('collie')
+ zimage_path = self.ASSET_ZIMAGE.fetch()
+ rootfs_path = self.ASSET_ROOTFS.fetch()
+ self.vm.add_args('-append', 'rdinit=/sbin/init console=ttySA1')
+ self.launch_kernel(zimage_path,
+ initrd=rootfs_path,
+ wait_for='reboot: Restarting system')
+
+if __name__ == '__main__':
+ LinuxKernelTest.main()
--
2.34.1
- [PULL 00/18] target-arm queue, Peter Maydell, 2024/10/29
- [PULL 01/18] arm/kvm: add support for MTE, Peter Maydell, 2024/10/29
- [PULL 12/18] docs/system/arm: Add placeholder doc for exynos4 boards, Peter Maydell, 2024/10/29
- [PULL 03/18] target/arm: Store FPSR cumulative exception bits in env->vfp.fpsr, Peter Maydell, 2024/10/29
- [PULL 02/18] docs/system/cpu-hotplug: Update example's socket-id/core-id, Peter Maydell, 2024/10/29
- [PULL 06/18] tests/functional: Add a functional test for the collie board,
Peter Maydell <=
- [PULL 10/18] docs/system/arm: Don't use wildcard '*-bmc' in doc titles, Peter Maydell, 2024/10/29
- [PULL 05/18] hw/sd/omap_mmc: Don't use sd_cmd_type_t, Peter Maydell, 2024/10/29
- [PULL 04/18] target/arm: Don't assert in regime_is_user() for E10 mmuidx values, Peter Maydell, 2024/10/29
- [PULL 08/18] scripts/symlink-install-tree.py: Fix MESONINTROSPECT parsing, Peter Maydell, 2024/10/29
- [PULL 09/18] docs/system/arm/stm32: List olimex-stm32-h405 in document title, Peter Maydell, 2024/10/29
- [PULL 07/18] tests/functional: Add a functional test for the sx1 board, Peter Maydell, 2024/10/29
- [PULL 15/18] docs/system/target-arm.rst: Remove "many boards are undocumented" note, Peter Maydell, 2024/10/29
- [PULL 11/18] docs/system/arm: Split fby35 out from aspeed.rst, Peter Maydell, 2024/10/29
- [PULL 14/18] docs/system/arm: Add placeholder docs for mcimx6ul-evk and mcimx7d-sabre, Peter Maydell, 2024/10/29
- [PULL 17/18] docs/devel/reset: Fix minor grammatical error, Peter Maydell, 2024/10/29