test_zchunk.py 426 B

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