aboutsummaryrefslogtreecommitdiff
path: root/tests/cantrbry.sh.in
diff options
context:
space:
mode:
authorDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2021-03-05 11:50:04 +0100
committerDavid Oberhollenzer <david.oberhollenzer@sigma-star.at>2022-08-19 19:52:55 +0200
commit9a9d2ac397286fd2096f4aefb6c9ec752713c469 (patch)
treec39b308d1af41c18e46dce90e3d75946b88ff79e /tests/cantrbry.sh.in
parentee92da3498723edb0049ed76479392da179ec5b9 (diff)
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 <david.oberhollenzer@sigma-star.at>
Diffstat (limited to 'tests/cantrbry.sh.in')
-rwxr-xr-xtests/cantrbry.sh.in3
1 files changed, 2 insertions, 1 deletions
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