diff options
Diffstat (limited to '3rdparty/zstd/tests/cli-tests/compression/compress-literals.sh')
-rwxr-xr-x | 3rdparty/zstd/tests/cli-tests/compression/compress-literals.sh | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/3rdparty/zstd/tests/cli-tests/compression/compress-literals.sh b/3rdparty/zstd/tests/cli-tests/compression/compress-literals.sh new file mode 100755 index 00000000000..573481a3f5b --- /dev/null +++ b/3rdparty/zstd/tests/cli-tests/compression/compress-literals.sh @@ -0,0 +1,10 @@ +#!/bin/sh + +set -e + +# Test --[no-]compress-literals +zstd file --no-compress-literals -1 -c | zstd -t +zstd file --no-compress-literals -19 -c | zstd -t +zstd file --no-compress-literals --fast=1 -c | zstd -t +zstd file --compress-literals -1 -c | zstd -t +zstd file --compress-literals --fast=1 -c | zstd -t |