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