diff options
author | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-05 11:50:04 +0100 |
---|---|---|
committer | David Oberhollenzer <david.oberhollenzer@sigma-star.at> | 2021-03-05 11:53:56 +0100 |
commit | 3fc6bf24b5cc071fc323f08ece541e37578f6369 (patch) | |
tree | 3bcf69eee1492c11ef8081b404af905dd127d8d4 /tests/cantrbry.sh.in | |
parent | e51f682b79f1543a8f89ab6491973411582d7bb4 (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-x | tests/cantrbry.sh.in | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tests/cantrbry.sh.in b/tests/cantrbry.sh.in index 2466959..1ef84e6 100755 --- a/tests/cantrbry.sh.in +++ b/tests/cantrbry.sh.in @@ -12,7 +12,7 @@ fi COMPRESSORS=$("$TAR2SQFS" --help | grep $'\t' | sed 's/ (default)//' | \ tr -d '\011' | sort | uniq | sed '/uncompressed/d' | \ - sed '/bzip2/d') + sed '/bzip2/d' | sed '/zstd/d' | sed '/lz4/d') for size in 4k 8k 16k 32k 64k 128k 256k 512k 1M; do for cmp in $COMPRESSORS; do |