fate: apply TARGET_EXEC only to commands starting with absolute path

Originally committed as revision 24313 to svn://svn.ffmpeg.org/ffmpeg/trunk
oldabi
Måns Rullgård 15 years ago
parent d2f33c8021
commit f0388cf716
  1. 3
      tests/fate-run.sh

@ -42,7 +42,8 @@ fi
mkdir -p "$outdir" mkdir -p "$outdir"
eval $target_exec $command > "$outfile" 2>/dev/null || exit case "$command" in /*) command="$target_exec $command" ;; esac
eval $command > "$outfile" 2>/dev/null || exit
case $cmp in case $cmp in
diff) diff -u -w "$ref" "$outfile" ;; diff) diff -u -w "$ref" "$outfile" ;;

Loading…
Cancel
Save