From: Yann Collet Date: Thu, 17 Dec 2015 22:12:07 +0000 (+0100) Subject: fix test32 X-Git-Tag: v0.4.5^2~5 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=035c5429ba6b6f0cb34a272890932dd85a899393;p=thirdparty%2Fzstd.git fix test32 --- diff --git a/programs/playTests.sh b/programs/playTests.sh index 5829ad2a2..afffd5eb5 100755 --- a/programs/playTests.sh +++ b/programs/playTests.sh @@ -54,12 +54,12 @@ echo "*** multiple files tests *** " ./datagen -s1 > tmp1 2> /dev/null ./datagen -s2 -g100K > tmp2 2> /dev/null ./datagen -s3 -g1M > tmp3 2> /dev/null -./zstd -f -m tmp* +$ZSTD -f -m tmp* ls -ls tmp* rm tmp1 tmp2 tmp3 -./zstd -df -m *.zst +$ZSTD -df -m *.zst ls -ls tmp* -./zstd -f -m tmp1 notHere tmp2 && die "missing file not detected!" +$ZSTD -f -m tmp1 notHere tmp2 && die "missing file not detected!" rm tmp* echo "**** zstd round-trip tests **** "