17 lines
426 B
Python
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
|