diff options
Diffstat (limited to '3rdparty/zstd/tests/cli-tests/compression/window-resize.sh')
-rwxr-xr-x | 3rdparty/zstd/tests/cli-tests/compression/window-resize.sh | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/3rdparty/zstd/tests/cli-tests/compression/window-resize.sh b/3rdparty/zstd/tests/cli-tests/compression/window-resize.sh new file mode 100755 index 00000000000..e4fe811ce78 --- /dev/null +++ b/3rdparty/zstd/tests/cli-tests/compression/window-resize.sh @@ -0,0 +1,9 @@ +#!/bin/sh +datagen -g1G > file +zstd --long=30 -1 --single-thread --no-content-size -f file +zstd -l -v file.zst + +# We want to ignore stderr (its outputting "*** zstd command line interface +# 64-bits v1.5.3, by Yann Collet ***") + +rm file file.zst |