1from tests.package.test_compressor_base import TestCompressorBase
2
3
4class TestZchunk(TestCompressorBase):
5    __test__ = True
6    config = TestCompressorBase.config + \
7        """
8        BR2_PACKAGE_ZCHUNK=y
9        BR2_PACKAGE_ZSTD=y
10        """
11    compress_cmd = "zck"
12
13    def check_integrity_test(self):
14        # Do nothing for the integrity test, because "zck" does not
15        # implement this feature.
16        pass
17