aboutsummaryrefslogtreecommitdiff
path: root/tests/cli-tests/decompression/detectErrors.sh
blob: 300cde36438616941322755b803e237bf94378e5 (plain)
1
2
3
4
5
6
7
8
9
10
11
#!/bin/sh

set -e

GOLDEN_DIR="$ZSTD_REPO_DIR/tests/golden-decompression-errors/"

for file in "$GOLDEN_DIR"/*; do
    zstd -t $file && die "should have detected an error"
done
exit 0