Commit d2f33c80 authored by Måns Rullgård's avatar Måns Rullgård

fate: use our variable names in test rules imported from Mike's db

Originally committed as revision 24312 to svn://svn.ffmpeg.org/ffmpeg/trunk
parent 122a9af7
......@@ -12,10 +12,6 @@ cmp=${6:-diff}
ref=${7:-"${base}/ref/fate/${test}"}
fuzz=$8
# compatibility with Mike's test specs
SAMPLES_PATH=$samples
BUILD_PATH=$target_path
outdir="tests/data/fate"
outfile="${outdir}/${test}"
......
......@@ -25,7 +25,8 @@ do_sql "$SQL_TESTS" | while read id name command; do
{MD5}*) command="${command#\{MD5\}} | do_md5sum | cut -c-32" ;;
{*}*) continue ;;
esac
command=$(echo "$command" | sed 's/\$/$$/g')
command=$(echo "$command" | sed 's/\$BUILD_PATH/$(TARGET_PATH)/g')
command=$(echo "$command" | sed 's/\$SAMPLES_PATH/$(SAMPLES)/g')
do_sql "SELECT expected_stdout FROM test_spec WHERE id=$id" | awk '/./{print}' > "$ref/$name"
printf "FATE_TESTS += fate-${name}\n" >&3
printf "fate-${name}: CMD = %s\n" "$command" >&3
......
This source diff could not be displayed because it is too large. You can view the blob instead.
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment