kumquat-buildroot/support/testing/tests/package/test_zchunk.py
Julien Olivain 2fd06a0e57 support/testing/tests/package/test_zchunk.py: new runtime test
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-07-14 23:25:49 +02:00

17 lines
426 B
Python

from tests.package.test_compressor_base import TestCompressorBase
class TestZchunk(TestCompressorBase):
__test__ = True
config = TestCompressorBase.config + \
"""
BR2_PACKAGE_ZCHUNK=y
BR2_PACKAGE_ZSTD=y
"""
compress_cmd = "zck"
def check_integrity_test(self):
# Do nothing for the integrity test, because "zck" does not
# implement this feature.
pass