You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-06-25 14:23:15 +02:00
fate: fail with a sensible error message if reference file is missing
Originally committed as revision 24152 to svn://svn.ffmpeg.org/ffmpeg/trunk
This commit is contained in:
@ -24,6 +24,11 @@ oneoff(){
|
|||||||
fi
|
fi
|
||||||
}
|
}
|
||||||
|
|
||||||
|
if ! test -e "$ref"; then
|
||||||
|
echo "reference file '$ref' not found"
|
||||||
|
exit 1
|
||||||
|
fi
|
||||||
|
|
||||||
mkdir -p "$outdir"
|
mkdir -p "$outdir"
|
||||||
|
|
||||||
eval $target_exec $command > "$outfile" 2>/dev/null || exit
|
eval $target_exec $command > "$outfile" 2>/dev/null || exit
|
||||||
|
Reference in New Issue
Block a user