iw7-mod/deps/zstd/tests/cli-tests/compression/compress-literals.sh
2024-08-13 05:15:34 -04:00

11 lines
326 B
Bash

#!/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