From: Yann Collet Date: Sun, 22 Jan 2017 23:54:14 +0000 (-0800) Subject: playtest.sh : changed sdiff into $DIFF X-Git-Tag: v1.1.3^2~19^2~15 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=bd6bc2261237526ab133e5f1ab7262fa91745f69;p=thirdparty%2Fzstd.git playtest.sh : changed sdiff into $DIFF --- diff --git a/tests/playTests.sh b/tests/playTests.sh index 5bb882aa4..35731f9cf 100755 --- a/tests/playTests.sh +++ b/tests/playTests.sh @@ -135,14 +135,14 @@ $ZSTD -c world.tmp > world.zstd cat hello.zstd world.zstd > helloworld.zstd $ZSTD -dc helloworld.zstd > result.tmp cat result.tmp -sdiff helloworld.tmp result.tmp +$DIFF helloworld.tmp result.tmp $ECHO "frame concatenation without checksum" $ZSTD -c hello.tmp > hello.zstd --no-check $ZSTD -c world.tmp > world.zstd --no-check cat hello.zstd world.zstd > helloworld.zstd $ZSTD -dc helloworld.zstd > result.tmp cat result.tmp -sdiff helloworld.tmp result.tmp +$DIFF helloworld.tmp result.tmp rm ./*.tmp ./*.zstd $ECHO "frame concatenation tests completed"