From 66b6688274a37c3c1911b9848e955ea25463af73 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Bj=C3=B6rn=20Ketelaars?= Date: Wed, 6 Nov 2019 11:39:59 +0100 Subject: [PATCH] 'head -c BYTES' is non-portable. Similar to #1321: The '-c' option for 'head' is non-portable (not in POSIX). --- tests/playTests.sh | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/playTests.sh b/tests/playTests.sh index c09e0c21..124500b4 100755 --- a/tests/playTests.sh +++ b/tests/playTests.sh @@ -274,7 +274,7 @@ test -f tmp.zst # destination file should still be present rm -rf tmp* # may also erase tmp* directory from previous failed run println "\n===> decompression only tests " -head -c 1048576 /dev/zero > tmp +dd bs=1 count=1048576 if=/dev/zero of=tmp $ZSTD -d -o tmp1 "$TESTDIR/golden-decompression/rle-first-block.zst" $DIFF -s tmp1 tmp rm tmp* @@ -1173,9 +1173,9 @@ rm -f tmp* dictionary if [ "$isWindows" = false ] ; then println "\n===> zstd fifo named pipe test " -head -c 10 /dev/zero > tmp_original +dd bs=1 count=10 if=/dev/zero of=tmp_original mkfifo named_pipe -head -c 10 /dev/zero > named_pipe & +dd bs=1 count=10 if=/dev/zero of=named_pipe & $ZSTD named_pipe -o tmp_compressed $ZSTD -d -o tmp_decompressed tmp_compressed $DIFF -s tmp_original tmp_decompressed