Files
buildroot/support/testing/tests/package/test_quazip.py
Zoltan Gyarmati 4ae42d874d support/testing/tests/package/test_quazip: new runtime test
Signed-off-by: Zoltan Gyarmati <mr.zoltan.gyarmati@gmail.com>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2026-01-01 22:58:04 +01:00

44 lines
1.3 KiB
Python

import os
import infra.basetest
class TestQuazipQt6(infra.basetest.BRTest):
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
"""
BR2_PACKAGE_QT6=y
BR2_PACKAGE_QUAZIP=y
BR2_PACKAGE_QUAZIP_INSTALL_TESTS=y
BR2_TARGET_ROOTFS_CPIO=y
"""
def test_run(self):
cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
self.emulator.boot(arch="armv5",
kernel="builtin",
options=["-initrd", cpio_file])
self.emulator.login()
# qztest returns non-zero if any of the tests failed
self.assertRunOk("/usr/bin/qztest", 120)
class TestQuazipQt5(infra.basetest.BRTest):
config = infra.basetest.BASIC_TOOLCHAIN_CONFIG + \
"""
BR2_PACKAGE_QT5=y
BR2_PACKAGE_QUAZIP=y
BR2_PACKAGE_QUAZIP_INSTALL_TESTS=y
BR2_TARGET_ROOTFS_CPIO=y
"""
def test_run(self):
cpio_file = os.path.join(self.builddir, "images", "rootfs.cpio")
self.emulator.boot(arch="armv5",
kernel="builtin",
options=["-initrd", cpio_file])
self.emulator.login()
# qztest returns non-zero if any of the tests failed
self.assertRunOk("/usr/bin/qztest", 120)