shithub: mp3dec

ref: d30a16b6543d0c26ec444dceb615a0f4ffd991c3
dir: /scripts/test_fuzz.sh/

View raw version
_FILENAME=${0##*/}
CUR_DIR=${0/${_FILENAME}}
CUR_DIR=$(cd $(dirname ${CUR_DIR}); pwd)/$(basename ${CUR_DIR})/

pushd $CUR_DIR/..

APP=./minimp3_fuzz

set +e
for i in fuzz_out/crashes/*; do
$APP $i
retval=$?
echo $i exited with code=$retval
if [ ! $retval -eq 0 ]; then
  exit 1
fi
done