kumquat-buildroot/support/testing/tests/package/test_bzip2.py
Julien Olivain 1fcc0dcb00 support/testing/tests/package/test_bzip2.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:40 +02:00

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"