Browse Source

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
tags/n0.8
Måns Rullgård 15 years ago
parent
commit
d2f33c8021
3 changed files with 366 additions and 369 deletions
  1. +0
    -4
      tests/fate-run.sh
  2. +2
    -1
      tests/fate-update.sh
  3. +364
    -364
      tests/fate.mak

+ 0
- 4
tests/fate-run.sh View File

@@ -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}"



+ 2
- 1
tests/fate-update.sh View File

@@ -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


+ 364
- 364
tests/fate.mak
File diff suppressed because it is too large
View File


Loading…
Cancel
Save