1fcc0dcb00
Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13 lines
311 B
Python
13 lines
311 B
Python
from tests.package.test_compressor_base import TestCompressorBase
|
|
|
|
|
|
class TestBzip2(TestCompressorBase):
|
|
__test__ = True
|
|
config = TestCompressorBase.config + \
|
|
"""
|
|
BR2_PACKAGE_BZIP2=y
|
|
"""
|
|
compress_cmd = "bzip2"
|
|
decompress_cmd = "bunzip2"
|
|
compressed_file_ext = ".bz2"
|