Simplify lavfi test script a little
authorMåns Rullgård <mans@mansr.com>
Sat, 24 Jul 2010 17:13:35 +0000 (17:13 +0000)
committerMåns Rullgård <mans@mansr.com>
Sat, 24 Jul 2010 17:13:35 +0000 (17:13 +0000)
Originally committed as revision 24486 to svn://svn.ffmpeg.org/ffmpeg/trunk

tests/lavfi-regression.sh

index c20f427..a81ad74 100755 (executable)
@@ -38,12 +38,10 @@ get_exclusive_elements() (
 )
 
 do_lavfi() {
-    test_name=$1
-    eval test=\$do_$test_name
     vfilters="slicify=random,$2"
 
-    if [ -n "$test" ] ; then
-        do_video_encoding ${test_name}.nut "" "-vcodec rawvideo -vf $vfilters"
+    if [ $test = $1 ] ; then
+        do_video_encoding ${test}.nut "" "-vcodec rawvideo -vf $vfilters"
     fi
 }