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>
This commit is contained in:
Zoltan Gyarmati
2025-11-20 23:08:01 +01:00
committed by Thomas Petazzoni
parent 53044437c8
commit 4ae42d874d
2 changed files with 44 additions and 0 deletions

View File

@@ -3542,3 +3542,4 @@ F: package/quazip/
F: package/shapelib/
F: package/simple-mail/
F: package/tinc/
F: support/testing/tests/package/test_quazip.py

View File

@@ -0,0 +1,43 @@
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)