kumquat-buildroot/support/testing/tests/package/test_gzip.py
Julien Olivain a1e2d0496b support/testing/tests/package/test_gzip.py: new runtime test
Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
2023-07-11 22:43:26 +02:00

14 lines
348 B
Python

from tests.package.test_compressor_base import TestCompressorBase
class TestGzip(TestCompressorBase):
__test__ = True
config = TestCompressorBase.config + \
"""
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
BR2_PACKAGE_GZIP=y
"""
compress_cmd = "gzip"
decompress_cmd = "gunzip"
compressed_file_ext = ".gz"