mirror of
https://gitlab.com/buildroot.org/buildroot.git
synced 2026-08-01 21:23:51 -09:00
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:
committed by
Thomas Petazzoni
parent
53044437c8
commit
4ae42d874d
@@ -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
|
||||
|
||||
43
support/testing/tests/package/test_quazip.py
Normal file
43
support/testing/tests/package/test_quazip.py
Normal 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)
|
||||
Reference in New Issue
Block a user