kumquat-buildroot/support/testing/tests/package/test_lzop.py
Julien Olivain 305e74b2d8 support/testing/tests/package/test_lzop.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:38 +02:00

13 lines
308 B
Python

from tests.package.test_compressor_base import TestCompressorBase
class TestLzop(TestCompressorBase):
__test__ = True
config = TestCompressorBase.config + \
"""
BR2_PACKAGE_LZOP=y
"""
compress_cmd = "lzop"
decompress_cmd = "lzop -d"
compressed_file_ext = ".lzo"