mirror of
https://github.com/PartialVolume/shredos.x86_64.git
synced 2026-03-01 14:02:12 +00:00
11 lines
238 B
Python
11 lines
238 B
Python
from tests.package.test_compressor_base import TestCompressorBase
|
|
|
|
|
|
class TestXz(TestCompressorBase):
|
|
__test__ = True
|
|
config = TestCompressorBase.config + \
|
|
"""
|
|
BR2_PACKAGE_XZ=y
|
|
"""
|
|
compress_cmd = "xz"
|