From 9a9d2ac397286fd2096f4aefb6c9ec752713c469 Mon Sep 17 00:00:00 2001 From: David Oberhollenzer Date: Fri, 5 Mar 2021 11:50:04 +0100 Subject: Remove lz4 & zstd from corpus test Relying on the output of a compressor to exactely match an expected output is already not really a great idea, but for gzip, xz and lzo it has worked remarkably well so far. Perhaps because those are rather old and don't have much active development going on besides bug fixing. On the other hand, lz4 and zstd which are much younger seem to have more development going on and keep breaking between versions. This commit removes the zstd & lz4 corpus tests. Signed-off-by: David Oberhollenzer --- tests/cantrbry.sh.in | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'tests/cantrbry.sh.in') diff --git a/tests/cantrbry.sh.in b/tests/cantrbry.sh.in index d3ab459..574f427 100755 --- a/tests/cantrbry.sh.in +++ b/tests/cantrbry.sh.in @@ -11,7 +11,8 @@ if [ ! -f "$TAR2SQFS" -a -f "${TAR2SQFS}.exe" ]; then fi COMPRESSORS=$("$TAR2SQFS" --help | tr -d '\015' |\ - awk '/Available compressors:/,EOF' | sed -n '/\t/p') + awk '/Available compressors:/,EOF' | sed -n '/\t/p' |\ + sed '/zstd/d' | sed '/lz4/d') for size in 4k 8k 16k 32k 64k 128k 256k 512k 1M; do for cmp in $COMPRESSORS; do -- cgit v1.2.3