Sign in
android
/
platform
/
external
/
zstd
/
HEAD
/
.
/
tests
/
cli-tests
/
decompression
/
detectErrors.sh
blob: 300cde36438616941322755b803e237bf94378e5 [
file
] [
log
] [
blame
]
#!/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