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