projects
/
ffmpeg.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f366a6d
)
fate: simplify test runner slightly
author
Måns Rullgård
<mans@mansr.com>
Sun, 18 Jul 2010 20:46:44 +0000
(20:46 +0000)
committer
Måns Rullgård
<mans@mansr.com>
Sun, 18 Jul 2010 20:46:44 +0000
(20:46 +0000)
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
tests/fate-run.sh
patch
|
blob
|
history
diff --git
a/tests/fate-run.sh
b/tests/fate-run.sh
index
015aab4
..
0bbb530
100755
(executable)
--- a/
tests/fate-run.sh
+++ b/
tests/fate-run.sh
@@
-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" ;;