]> git.ipfire.org Git - thirdparty/zstd.git/commitdiff
playtest.sh : changed sdiff into $DIFF
authorYann Collet <cyan@fb.com>
Sun, 22 Jan 2017 23:54:14 +0000 (15:54 -0800)
committerYann Collet <cyan@fb.com>
Sun, 22 Jan 2017 23:54:14 +0000 (15:54 -0800)
tests/playTests.sh

index 5bb882aa468194890c671cc307541f75e318141f..35731f9cf49467981341a8709d6e2d7957ac880e 100755 (executable)
@@ -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"