The 'tar' variable should be set to a command writing a tar archive
of the named files to stdout, typically "tar c" or "tar cf -"
Originally committed as revision 24649 to svn://svn.ffmpeg.org/ffmpeg/trunk
workdir=$(dirname $config)
make=make
+tar='tar c'
. "$config"
date=$(date -u +%Y%m%d%H%M%S)
echo "fate:0:${date}:${slot}:${version}:$1:$2" >report
cat ${build}/config.fate ${build}/tests/data/fate/*.rep >>report
- test -n "$fate_recv" && tar cz report *.log | $fate_recv
+ test -n "$fate_recv" && $tar report *.log | gzip | $fate_recv
}
fail(){