support/testing/tests/package/test_lrzip.py: new runtime test

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Yann E. MORIN <yann.morin.1998@free.fr>
This commit is contained in:
Julien Olivain 2023-07-23 12:49:20 +02:00 committed by Yann E. MORIN
parent b600dbc319
commit d5e078a15c
2 changed files with 13 additions and 0 deletions

View File

@ -1751,6 +1751,7 @@ F: support/testing/tests/package/test_iperf3.py
F: support/testing/tests/package/test_kexec.py
F: support/testing/tests/package/test_kexec/
F: support/testing/tests/package/test_libjxl.py
F: support/testing/tests/package/test_lrzip.py
F: support/testing/tests/package/test_lzip.py
F: support/testing/tests/package/test_lsof.py
F: support/testing/tests/package/test_lz4.py

View File

@ -0,0 +1,12 @@
from tests.package.test_compressor_base import TestCompressorBase
class TestLrzip(TestCompressorBase):
__test__ = True
config = TestCompressorBase.config + \
"""
BR2_PACKAGE_LRZIP=y
"""
compress_cmd = "lrzip"
decompress_cmd = "lrunzip"
compressed_file_ext = ".lrz"