Files
lieff-minimp3/scripts/test.sh
2018-01-14 18:23:27 +03:00

18 lines
288 B
Bash
Executable File

_FILENAME=${0##*/}
CUR_DIR=${0/${_FILENAME}}
CUR_DIR=$(cd $(dirname ${CUR_DIR}); pwd)/$(basename ${CUR_DIR})/
pushd $CUR_DIR/..
APP=./minimp3
set +e
for i in vectors/*.bit; do
$APP $i ${i%.*}.pcm
retval=$?
echo $i exited with code=$retval
if [ ! $retval -eq 0 ]; then
exit 1
fi
done