Commit 150ef830 authored by Måns Rullgård's avatar Måns Rullgård

fate: fail with a sensible error message if reference file is missing

Originally committed as revision 24152 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 34ae2d90
......@@ -24,6 +24,11 @@ oneoff(){
fi
}
if ! test -e "$ref"; then
echo "reference file '$ref' not found"
exit 1
fi
mkdir -p "$outdir"
eval $target_exec $command > "$outfile" 2>/dev/null || exit
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment