2
1

test_lrzip.py 311 B

123456789101112
  1. from tests.package.test_compressor_base import TestCompressorBase
  2. class TestLrzip(TestCompressorBase):
  3. __test__ = True
  4. config = TestCompressorBase.config + \
  5. """
  6. BR2_PACKAGE_LRZIP=y
  7. """
  8. compress_cmd = "lrzip"
  9. decompress_cmd = "lrunzip"
  10. compressed_file_ext = ".lrz"