From 2fd06a0e57278891cd29f3497a5d23692716e253 Mon Sep 17 00:00:00 2001 From: Julien Olivain Date: Fri, 14 Jul 2023 18:42:30 +0200 Subject: [PATCH] support/testing/tests/package/test_zchunk.py: new runtime test Signed-off-by: Julien Olivain Signed-off-by: Thomas Petazzoni --- DEVELOPERS | 1 + support/testing/tests/package/test_zchunk.py | 16 ++++++++++++++++ 2 files changed, 17 insertions(+) create mode 100644 support/testing/tests/package/test_zchunk.py diff --git a/DEVELOPERS b/DEVELOPERS index 3c8a6197da..405ccd645a 100644 --- a/DEVELOPERS +++ b/DEVELOPERS @@ -1769,6 +1769,7 @@ F: support/testing/tests/package/test_stress_ng.py F: support/testing/tests/package/test_xz.py F: support/testing/tests/package/test_z3.py F: support/testing/tests/package/test_z3/ +F: support/testing/tests/package/test_zchunk.py F: support/testing/tests/package/test_zstd.py N: Julien Viard de Galbert diff --git a/support/testing/tests/package/test_zchunk.py b/support/testing/tests/package/test_zchunk.py new file mode 100644 index 0000000000..c250b748ef --- /dev/null +++ b/support/testing/tests/package/test_zchunk.py @@ -0,0 +1,16 @@ +from tests.package.test_compressor_base import TestCompressorBase + + +class TestZchunk(TestCompressorBase): + __test__ = True + config = TestCompressorBase.config + \ + """ + BR2_PACKAGE_ZCHUNK=y + BR2_PACKAGE_ZSTD=y + """ + compress_cmd = "zck" + + def check_integrity_test(self): + # Do nothing for the integrity test, because "zck" does not + # implement this feature. + pass