avconv: convert to new refcounted AVFrame API
[FFMpeg-mirror/mplayer-patches.git] / tests / fate.sh
blob86e4178c50b7b3a8de23a5fc362f15feb350886a
1 #! /bin/sh
3 config=$1
5 die(){
6 echo "$@"
7 exit 1
10 test -r "$config" || die "usage: fate.sh <config>"
12 workdir=$(cd $(dirname $config) && pwd)
13 make=make
14 tar='tar c'
16 . "$config"
18 test -n "$slot" || die "slot not specified"
19 test -n "$repo" || die "repo not specified"
20 test -d "$samples" || die "samples location not specified"
22 lock(){
23 lock=$1/fate.lock
24 (set -C; exec >$lock) 2>/dev/null || return
25 trap 'rm $lock' EXIT
28 checkout(){
29 case "$repo" in
30 file:*|/*) src="${repo#file:}" ;;
31 git:*) git clone "$repo" "$src" ;;
32 esac
35 update()(
36 cd ${src} || return
37 case "$repo" in
38 git:*) git pull --quiet ;;
39 esac
42 configure()(
43 cd ${build} || return
44 ${src}/configure \
45 --prefix="${inst}" \
46 --samples="${samples}" \
47 --enable-gpl \
48 ${arch:+--arch=$arch} \
49 ${cpu:+--cpu="$cpu"} \
50 ${cross_prefix:+--cross-prefix="$cross_prefix"} \
51 ${cc:+--cc="$cc"} \
52 ${ld:+--ld="$ld"} \
53 ${target_os:+--target-os="$target_os"} \
54 ${sysroot:+--sysroot="$sysroot"} \
55 ${target_exec:+--target-exec="$target_exec"} \
56 ${target_path:+--target-path="$target_path"} \
57 ${extra_cflags:+--extra-cflags="$extra_cflags"} \
58 ${extra_ldflags:+--extra-ldflags="$extra_ldflags"} \
59 ${extra_libs:+--extra-libs="$extra_libs"} \
60 ${extra_conf}
63 compile()(
64 cd ${build} || return
65 ${make} ${makeopts} && ${make} install
68 fate()(
69 cd ${build} || return
70 ${make} ${makeopts} -k fate
73 clean(){
74 rm -rf ${build} ${inst}
77 report(){
78 date=$(date -u +%Y%m%d%H%M%S)
79 echo "fate:0:${date}:${slot}:${version}:$1:$2:${comment}" >report
80 cat ${build}/config.fate ${build}/tests/data/fate/*.rep >>report
81 test -n "$fate_recv" && $tar report *.log | gzip | $fate_recv
84 fail(){
85 report "$@"
86 clean
87 exit
90 mkdir -p ${workdir} || die "Error creating ${workdir}"
91 lock ${workdir} || die "${workdir} locked"
92 cd ${workdir} || die "cd ${workdir} failed"
94 src=${workdir}/src
95 : ${build:=${workdir}/build}
96 : ${inst:=${workdir}/install}
98 test -d "$src" && update || checkout || die "Error fetching source"
100 cd ${workdir}
102 version=$(${src}/version.sh ${src})
103 test "$version" = "$(cat version-$slot 2>/dev/null)" && exit 0
104 echo ${version} >version-$slot
106 rm -rf "${build}" *.log
107 mkdir -p ${build}
109 configure >configure.log 2>&1 || fail $? "error configuring"
110 compile >compile.log 2>&1 || fail $? "error compiling"
111 fate >test.log 2>&1 || fail $? "error testing"
112 report 0 success
113 clean