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

12 lines
273 B
Python
Raw Normal View History

2024-02-18 09:22:07 +08:00
from tests.package.test_compressor_base import TestCompressorBase
class TestLz4(TestCompressorBase):
__test__ = True
config = TestCompressorBase.config + \
"""
BR2_PACKAGE_LZ4=y
BR2_PACKAGE_LZ4_PROGS=y
"""
compress_cmd = "lz4"