78c7f45946
Signed-off-by: Julien Olivain <ju.o@free.fr> Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
13 lines
315 B
Python
13 lines
315 B
Python
from tests.package.test_compressor_base import TestCompressorBase
|
|
|
|
|
|
class TestPigz(TestCompressorBase):
|
|
__test__ = True
|
|
config = TestCompressorBase.config + \
|
|
"""
|
|
BR2_PACKAGE_PIGZ=y
|
|
"""
|
|
compress_cmd = "pigz -p3"
|
|
decompress_cmd = "pigz -d -p3"
|
|
compressed_file_ext = ".gz"
|