Browse code

fate-run: rename some variables consistently with other files

Originally committed as revision 24311 to svn://svn.ffmpeg.org/ffmpeg/trunk

Måns Rullgård authored on 2010/07/19 05:19:16
Showing 1 changed files
... ...
@@ -4,14 +4,18 @@ base=$(dirname $0)
4 4
 . "${base}/md5.sh"
5 5
 
6 6
 test="${1#fate-}"
7
-SAMPLES_PATH=$2
7
+samples=$2
8 8
 target_exec=$3
9
-BUILD_PATH=$4
9
+target_path=$4
10 10
 command=$5
11 11
 cmp=${6:-diff}
12 12
 ref=${7:-"${base}/ref/fate/${test}"}
13 13
 fuzz=$8
14 14
 
15
+# compatibility with Mike's test specs
16
+SAMPLES_PATH=$samples
17
+BUILD_PATH=$target_path
18
+
15 19
 outdir="tests/data/fate"
16 20
 outfile="${outdir}/${test}"
17 21