Browse Source

fate: simplify test runner slightly

All tests use the provided helper functions so prepending $target_exec
and using eval is no longer required.

Originally committed as revision 24317 to svn://svn.ffmpeg.org/ffmpeg/trunk
tags/n0.8
Måns Rullgård 15 years ago
parent
commit
cdaf4b79bb
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      tests/fate-run.sh

+ 1
- 2
tests/fate-run.sh View File

@@ -66,8 +66,7 @@ fi

mkdir -p "$outdir"

case "$command" in /*) command="$target_exec $command" ;; esac
eval $command > "$outfile" 2>/dev/null || exit
$command > "$outfile" 2>/dev/null || exit

case $cmp in
diff) diff -u -w "$ref" "$outfile" ;;


Loading…
Cancel
Save