tests/functional: Convert ARM Integrator/CP avocado tests

Straight forward conversion. Update the SHA1 hashes to SHA256
hashes since SHA1 should not be used anymore nowadays.

  $ QEMU_TEST_ALLOW_UNTRUSTED_CODE=1 make check-functional-arm
  ...
  6/6 qemu:func-thorough+func-arm-thorough+thorough / func-arm-arm_integratorcp   OK   3.90s   2 subtests passed

Signed-off-by: Philippe Mathieu-Daudé <philmd@linaro.org>
Message-ID: <20240822110238.82312-1-philmd@linaro.org>
Reviewed-by: Thomas Huth <thuth@redhat.com>
Message-ID: <20240830133841.142644-34-thuth@redhat.com>
Signed-off-by: Thomas Huth <thuth@redhat.com>
This commit is contained in:
Philippe Mathieu-Daudé 2024-08-30 15:38:27 +02:00 committed by Thomas Huth
parent 8dcac1cf71
commit ef83aea0a3
3 changed files with 33 additions and 26 deletions

View File

@ -784,7 +784,7 @@ S: Maintained
F: hw/arm/integratorcp.c F: hw/arm/integratorcp.c
F: hw/misc/arm_integrator_debug.c F: hw/misc/arm_integrator_debug.c
F: include/hw/misc/arm_integrator_debug.h F: include/hw/misc/arm_integrator_debug.h
F: tests/avocado/machine_arm_integratorcp.py F: tests/functional/test_arm_integratorcp.py
F: docs/system/arm/integratorcp.rst F: docs/system/arm/integratorcp.rst
MCIMX6UL EVK / i.MX6ul MCIMX6UL EVK / i.MX6ul

View File

@ -34,6 +34,7 @@ tests_generic_bsduser = [
tests_arm_system_thorough = [ tests_arm_system_thorough = [
'arm_canona1100', 'arm_canona1100',
'arm_integratorcp',
] ]
tests_avr_system_thorough = [ tests_avr_system_thorough = [

View File

@ -1,3 +1,5 @@
#!/usr/bin/env python3
#
# Functional test that boots a Linux kernel and checks the console # Functional test that boots a Linux kernel and checks the console
# #
# Copyright (c) 2020 Red Hat, Inc. # Copyright (c) 2020 Red Hat, Inc.
@ -7,13 +9,15 @@
# #
# This work is licensed under the terms of the GNU GPL, version 2 or # This work is licensed under the terms of the GNU GPL, version 2 or
# later. See the COPYING file in the top-level directory. # later. See the COPYING file in the top-level directory.
#
# SPDX-License-Identifier: GPL-2.0-or-later
import os import os
import logging import logging
from avocado import skipUnless from qemu_test import QemuSystemTest, Asset
from avocado_qemu import QemuSystemTest from qemu_test import wait_for_console_pattern
from avocado_qemu import wait_for_console_pattern from unittest import skipUnless
NUMPY_AVAILABLE = True NUMPY_AVAILABLE = True
@ -33,50 +37,49 @@ class IntegratorMachine(QemuSystemTest):
timeout = 90 timeout = 90
ASSET_KERNEL = Asset(
('https://github.com/zayac/qemu-arm/raw/master/'
'arm-test/kernel/zImage.integrator'),
'26e7c7e8f943de785d95bd3c74d66451604a9b6a7a3d25dceb279e7548fd8e78')
ASSET_INITRD = Asset(
('https://github.com/zayac/qemu-arm/raw/master/'
'arm-test/kernel/arm_root.img'),
'e187c27fb342ad148c7f33475fbed124933e0b3f4be8c74bc4f3426a4793373a')
ASSET_TUXLOGO = Asset(
('https://github.com/torvalds/linux/raw/v2.6.12/'
'drivers/video/logo/logo_linux_vga16.ppm'),
'b762f0d91ec018887ad1b334543c2fdf9be9fdfc87672b409211efaa3ea0ef79')
def boot_integratorcp(self): def boot_integratorcp(self):
kernel_url = ('https://github.com/zayac/qemu-arm/raw/master/' kernel_path = self.ASSET_KERNEL.fetch()
'arm-test/kernel/zImage.integrator') initrd_path = self.ASSET_INITRD.fetch()
kernel_hash = '0d7adba893c503267c946a3cbdc63b4b54f25468'
kernel_path = self.fetch_asset(kernel_url, asset_hash=kernel_hash)
initrd_url = ('https://github.com/zayac/qemu-arm/raw/master/'
'arm-test/kernel/arm_root.img')
initrd_hash = 'b51e4154285bf784e017a37586428332d8c7bd8b'
initrd_path = self.fetch_asset(initrd_url, asset_hash=initrd_hash)
self.set_machine('integratorcp')
self.vm.set_console() self.vm.set_console()
self.vm.add_args('-kernel', kernel_path, self.vm.add_args('-kernel', kernel_path,
'-initrd', initrd_path, '-initrd', initrd_path,
'-append', 'printk.time=0 console=ttyAMA0') '-append', 'printk.time=0 console=ttyAMA0')
self.vm.launch() self.vm.launch()
@skipUnless(os.getenv('AVOCADO_ALLOW_UNTRUSTED_CODE'), 'untrusted code') @skipUnless(os.getenv('QEMU_TEST_ALLOW_UNTRUSTED_CODE'), 'untrusted code')
def test_integratorcp_console(self): def test_integratorcp_console(self):
""" """
Boots the Linux kernel and checks that the console is operational Boots the Linux kernel and checks that the console is operational
:avocado: tags=arch:arm
:avocado: tags=machine:integratorcp
:avocado: tags=device:pl011
""" """
self.boot_integratorcp() self.boot_integratorcp()
wait_for_console_pattern(self, 'Log in as root') wait_for_console_pattern(self, 'Log in as root')
@skipUnless(NUMPY_AVAILABLE, 'Python NumPy not installed') @skipUnless(NUMPY_AVAILABLE, 'Python NumPy not installed')
@skipUnless(CV2_AVAILABLE, 'Python OpenCV not installed') @skipUnless(CV2_AVAILABLE, 'Python OpenCV not installed')
@skipUnless(os.getenv('AVOCADO_ALLOW_UNTRUSTED_CODE'), 'untrusted code') @skipUnless(os.getenv('QEMU_TEST_ALLOW_UNTRUSTED_CODE'), 'untrusted code')
def test_framebuffer_tux_logo(self): def test_framebuffer_tux_logo(self):
""" """
Boot Linux and verify the Tux logo is displayed on the framebuffer. Boot Linux and verify the Tux logo is displayed on the framebuffer.
:avocado: tags=arch:arm
:avocado: tags=machine:integratorcp
:avocado: tags=device:pl110
:avocado: tags=device:framebuffer
""" """
screendump_path = os.path.join(self.workdir, "screendump.pbm") screendump_path = os.path.join(self.workdir, "screendump.pbm")
tuxlogo_url = ('https://github.com/torvalds/linux/raw/v2.6.12/' tuxlogo_path = self.ASSET_TUXLOGO.fetch()
'drivers/video/logo/logo_linux_vga16.ppm')
tuxlogo_hash = '3991c2ddbd1ddaecda7601f8aafbcf5b02dc86af'
tuxlogo_path = self.fetch_asset(tuxlogo_url, asset_hash=tuxlogo_hash)
self.boot_integratorcp() self.boot_integratorcp()
framebuffer_ready = 'Console: switching to colour frame buffer device' framebuffer_ready = 'Console: switching to colour frame buffer device'
@ -97,3 +100,6 @@ class IntegratorMachine(QemuSystemTest):
for tux_count, pt in enumerate(zip(*loc[::-1]), start=1): for tux_count, pt in enumerate(zip(*loc[::-1]), start=1):
logger.debug('found Tux at position [x, y] = %s', pt) logger.debug('found Tux at position [x, y] = %s', pt)
self.assertGreaterEqual(tux_count, cpu_count) self.assertGreaterEqual(tux_count, cpu_count)
if __name__ == '__main__':
QemuSystemTest.main()