Adding shell test and removing bash test file

This commit is contained in:
Bimba Shrestha
2019-10-22 17:09:44 -07:00
parent edae3c8f3c
commit 10f7147013
3 changed files with 11 additions and 49 deletions
+10
View File
@@ -1080,4 +1080,14 @@ test -f dictionary
rm -f tmp* dictionary
println "\n===> zstd fifo named pipe test "
head -c 10 /dev/zero > tmp_original
mkfifo named_pipe
head -c 10 /dev/zero > named_pipe &
$ZSTD named_pipe -o tmp_compressed
$ZSTD -d -o tmp_decompressed tmp_compressed
$DIFF -s tmp_original tmp_decompressed
rm -rf tmp*
rm -rf named_pipe
rm -f tmp*