Fix tar test cases

This commit is contained in:
Paweł Marciniak 2021-12-24 15:05:26 +01:00
parent 75525fcb9f
commit 666372c7bf

View File

@ -1359,21 +1359,21 @@ zstd -d tmp.tzst
rm -f tmp.tar tmp.tzst
if [ $GZIPMODE -eq 1 ]; then
tar -c tmp | gzip > tmp.tgz
tar -f - -c tmp | gzip > tmp.tgz
zstd -d tmp.tgz
[ -e tmp.tar ] || die ".tgz failed to decompress to .tar!"
rm -f tmp.tar tmp.tgz
fi
if [ $LZMAMODE -eq 1 ]; then
tar -c tmp | zstd --format=xz > tmp.txz
tar -f - -c tmp | zstd --format=xz > tmp.txz
zstd -d tmp.txz
[ -e tmp.tar ] || die ".txz failed to decompress to .tar!"
rm -f tmp.tar tmp.txz
fi
if [ $LZ4MODE -eq 1 ]; then
tar -c tmp | zstd --format=lz4 > tmp.tlz4
tar -f - -c tmp | zstd --format=lz4 > tmp.tlz4
zstd -d tmp.tlz4
[ -e tmp.tar ] || die ".tlz4 failed to decompress to .tar!"
rm -f tmp.tar tmp.tlz4