You've already forked FFmpeg
mirror of
https://github.com/FFmpeg/FFmpeg.git
synced 2025-08-10 06:10:52 +02:00
fate: Omit the results if the test passed
The FATE server does not report this information anyway and omitting it makes the successful run send much less data. Signed-off-by: Luca Barbato <lu_zero@gentoo.org>
This commit is contained in:
@@ -211,7 +211,13 @@ else
|
|||||||
err=1
|
err=1
|
||||||
fi
|
fi
|
||||||
|
|
||||||
echo "${test}:${sig:-$err}:$($base64 <$cmpfile):$($base64 <$errfile)" >$repfile
|
if [ $err -eq 0 ]; then
|
||||||
|
unset cmpo erro
|
||||||
|
else
|
||||||
|
cmpo="$($base64 <$cmpfile)"
|
||||||
|
erro="$($base64 <$errfile)"
|
||||||
|
fi
|
||||||
|
echo "${test}:${sig:-$err}:$cmpo:$erro" >$repfile
|
||||||
|
|
||||||
if test $err != 0 && test $gen != "no" ; then
|
if test $err != 0 && test $gen != "no" ; then
|
||||||
echo "GEN $ref"
|
echo "GEN $ref"
|
||||||
|
Reference in New Issue
Block a user