[FFmpeg-cvslog] r24317 - trunk/tests/fate-run.sh

mru subversion
Sun Jul 18 22:46:45 CEST 2010


Author: mru
Date: Sun Jul 18 22:46:44 2010
New Revision: 24317

Log:
fate: simplify test runner slightly

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

Modified:
   trunk/tests/fate-run.sh

Modified: trunk/tests/fate-run.sh
==============================================================================
--- trunk/tests/fate-run.sh	Sun Jul 18 22:46:42 2010	(r24316)
+++ trunk/tests/fate-run.sh	Sun Jul 18 22:46:44 2010	(r24317)
@@ -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"            ;;



More information about the ffmpeg-cvslog mailing list