/
githubmirror
/
zstd
Обзор
Документация
Войти
/
githubmirror
/
zstd
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
dev
tests/cli-tests/decompression/detectErrors.sh
10 строк
185 B
Yann Collet
detect extraneous bytes in the Sequences section
13 июн 2023, 21:43
13 июн 2023, 21:43
b462362
Код
Авторство
О чём код?
#!/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