3c0d12221e
Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13 lines
307 B
Python
13 lines
307 B
Python
from tests.package.test_compressor_base import TestCompressorBase
|
|
|
|
|
|
class TestLzip(TestCompressorBase):
|
|
__test__ = True
|
|
config = TestCompressorBase.config + \
|
|
"""
|
|
BR2_PACKAGE_LZIP=y
|
|
"""
|
|
compress_cmd = "lzip"
|
|
decompress_cmd = "lzip -d"
|
|
compressed_file_ext = ".lz"
|