kumquat-buildroot/support/testing/tests/package/test_lz4.py
Julien Olivain 0a6af11163 support/testing/tests/package/test_lz4.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 11:59:54 +02:00

12 lines
273 B
Python

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"