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

Signed-off-by: Julien Olivain <ju.o@free.fr>
Signed-off-by: Thomas Petazzoni <thomas.petazzoni@bootlin.com>
This commit is contained in:
Julien Olivain 2023-07-14 18:42:03 +02:00 committed by Thomas Petazzoni
parent f41fd3daf3
commit 305e74b2d8
2 changed files with 13 additions and 0 deletions

View File

@ -1747,6 +1747,7 @@ F: support/testing/tests/package/test_kexec/
F: support/testing/tests/package/test_libjxl.py
F: support/testing/tests/package/test_lsof.py
F: support/testing/tests/package/test_lz4.py
F: support/testing/tests/package/test_lzop.py
F: support/testing/tests/package/test_mtools.py
F: support/testing/tests/package/test_ncdu.py
F: support/testing/tests/package/test_octave.py

View File

@ -0,0 +1,12 @@
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"