kumquat-buildroot/support/testing/tests/package/test_pigz.py
Julien Olivain 78c7f45946 support/testing/tests/package/test_pigz.py: new runtime test
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-07-14 23:25:42 +02:00

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"