xref: /netbsd-src/external/bsd/zstd/dist/tests/cli-tests/compression/compress-literals.sh (revision 3117ece4fc4a4ca4489ba793710b60b0d26bab6c)
1*3117ece4Schristos#!/bin/sh
2*3117ece4Schristos
3*3117ece4Schristosset -e
4*3117ece4Schristos
5*3117ece4Schristos# Test --[no-]compress-literals
6*3117ece4Schristoszstd file --no-compress-literals -1 -c       | zstd -t
7*3117ece4Schristoszstd file --no-compress-literals -19 -c      | zstd -t
8*3117ece4Schristoszstd file --no-compress-literals --fast=1 -c | zstd -t
9*3117ece4Schristoszstd file --compress-literals -1 -c          | zstd -t
10*3117ece4Schristoszstd file --compress-literals --fast=1 -c    | zstd -t
11