buildroot/support/testing/tests/package/test_lzop.py

13 lines
308 B
Python
Raw Normal View History

2024-02-18 09:22:07 +08:00
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"