[FFmpeg-cvslog] tests: remove stale fate-update.sh script

Timothy Gu git at videolan.org
Sun Jun 1 19:17:57 CEST 2014


ffmpeg | branch: master | Timothy Gu <timothygu99 at gmail.com> | Sat May 31 21:02:39 2014 -0700| [527f5cbf64e7ac7fe265a244ebf36650e50921dc] | committer: Michael Niedermayer

tests: remove stale fate-update.sh script

This is the same as 5a15602a4e99c730036c33b467f60248889219e1, which
accidentally did not get merged.

Signed-off-by: Timothy Gu <timothygu99 at gmail.com>
Signed-off-by: Michael Niedermayer <michaelni at gmx.at>

> http://git.videolan.org/gitweb.cgi/ffmpeg.git/?a=commit;h=527f5cbf64e7ac7fe265a244ebf36650e50921dc
---

 tests/fate-update.sh |   55 --------------------------------------------------
 1 file changed, 55 deletions(-)

diff --git a/tests/fate-update.sh b/tests/fate-update.sh
deleted file mode 100755
index 6b4668f..0000000
--- a/tests/fate-update.sh
+++ /dev/null
@@ -1,55 +0,0 @@
-#! /bin/sh
-
-set -e
-
-base=$(dirname $0)
-ref="${base}/ref/fate"
-
-FATE_DB_URL="http://fate.multimedia.cx/fate-tests.sqlite.bz2"
-FATE_DB=$(mktemp fate-db.XXXXXX)
-SQL_TESTS='SELECT id,short_name,command FROM test_spec WHERE active=1 ORDER BY short_name'
-
-do_sql(){
-    sqlite3 -noheader -separator ' ' "$FATE_DB" "$@"
-}
-
-wget -q -O - "$FATE_DB_URL" | bunzip2 > "$FATE_DB"
-mkdir -p "$ref"
-exec 3>"$base/fate.mak"
-
-do_sql "$SQL_TESTS" | while read id name command; do
-    case "$name" in
-        00-full-regression|ffmpeg-help|binsize-*) continue ;;
-    esac
-    case "$command" in
-        {MD5}*)
-            command="${command#*ffmpeg}"; command="${command% -}"
-            command="md5 $command"
-            ;;
-        {*}*)   continue ;;
-        *-f\ framecrc\ -)
-            command="${command#*ffmpeg}"; command="${command% -f *}"
-            command="framecrc $command"
-            ;;
-        *-f\ framemd5\ -)
-            command="${command#*ffmpeg}"; command="${command% -f *}"
-            command="framemd5 $command"
-            ;;
-        *-f\ crc\ -)
-            command="${command#*ffmpeg}"; command="${command% -f *}"
-            command="crc $command"
-            ;;
-        *)
-            echo "Unhandled command '$command'"
-            exit 1
-            ;;
-    esac
-    command=$(echo "$command" | sed 's/\$SAMPLES_PATH/$(SAMPLES)/g')
-    command=$(echo "$command" | sed 's/ *$//')
-    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
-done
-
-exec 3<&-
-rm -f "$FATE_DB"



More information about the ffmpeg-cvslog mailing list