playTests updated with Pass-Through mode

This commit is contained in:
inikep
2016-05-24 18:22:38 +02:00
parent 33b8a893ed
commit 460a4ee6d4
2 changed files with 40 additions and 8 deletions
+6 -4
View File
@@ -31,9 +31,11 @@ REM %ZSTD% -d - < tmp.zst > NUL
%ZSTD% -q -f tmp
%ZSTD% -q --force tmp
%ZSTD% -df tmp && (echo should have refused : wrong extension && exit /b 1)
cp tmp tmp2.zst
%ZSTD% -df tmp2.zst && (echo should have failed : wrong format && exit /b 1)
rm tmp2.zst
echo. && echo **** Pass-Through mode ****
echo "Hello world !" | %ZSTD% -df
echo "Hello world !" | %ZSTD% -dcf
echo. && echo **** frame concatenation ****
@@ -48,7 +50,7 @@ cat result.tmp
fc /b helloworld.tmp result.tmp
rm *.tmp *.zstd
echo frame concatenation test completed
echo frame concatenation tests completed
REM echo. && echo **** flush write error test ****