mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-02-26 04:22:12 +00:00
12 lines
273 B
Python
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"
|