diff --git a/DEVELOPERS b/DEVELOPERS index a06ebe73e5..14ebccc611 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -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 diff --git a/support/testing/tests/package/test_quazip.py b/support/testing/tests/package/test_quazip.py new file mode 100644 index 0000000000..154481fe4a --- /dev/null +++ b/support/testing/tests/package/test_quazip.py @@ -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)