git subrepo pull (merge) --force deps/libchdr
[pcsx_rearmed.git] / deps / libchdr / deps / zstd-1.5.6 / tests / cli-tests / decompression / detectErrors.sh
1 #!/bin/sh
2
3 set -e
4
5 GOLDEN_DIR="$ZSTD_REPO_DIR/tests/golden-decompression-errors/"
6
7 for file in "$GOLDEN_DIR"/*; do
8     zstd -t $file && die "should have detected an error"
9 done
10 exit 0
11