mirror of
https://github.com/facebook/zstd.git
synced 2025-04-20 12:07:47 +03:00
12 lines
185 B
Bash
Executable File
12 lines
185 B
Bash
Executable File
#!/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
|
|
|