kumquat-buildroot/support/testing/tests/package/test_zstd.py
Julien Olivain 4fb4658c53 support/testing/tests/package/test_zstd.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 12:00:05 +02:00

12 lines
277 B
Python

from tests.package.test_compressor_base import TestCompressorBase
class TestZstd(TestCompressorBase):
__test__ = True
config = TestCompressorBase.config + \
"""
BR2_PACKAGE_ZSTD=y
"""
compress_cmd = "zstd"
compressed_file_ext = ".zst"