mirror of
https://github.com/godotengine/buildroot.git
synced 2026-01-04 06:10:16 +03:00
support/testing/tests/package/test_gzip.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:
committed by
Thomas Petazzoni
parent
cf132a137b
commit
a1e2d0496b
13
support/testing/tests/package/test_gzip.py
Normal file
13
support/testing/tests/package/test_gzip.py
Normal file
@@ -0,0 +1,13 @@
|
||||
from tests.package.test_compressor_base import TestCompressorBase
|
||||
|
||||
|
||||
class TestGzip(TestCompressorBase):
|
||||
__test__ = True
|
||||
config = TestCompressorBase.config + \
|
||||
"""
|
||||
BR2_PACKAGE_BUSYBOX_SHOW_OTHERS=y
|
||||
BR2_PACKAGE_GZIP=y
|
||||
"""
|
||||
compress_cmd = "gzip"
|
||||
decompress_cmd = "gunzip"
|
||||
compressed_file_ext = ".gz"
|
||||
Reference in New Issue
Block a user