mirror of
https://git.ffmpeg.org/ffmpeg.git
synced 2025-03-03 19:18:01 +00: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:
parent
d34039b171
commit
3b1e35d46d
@ -211,7 +211,13 @@ else
|
||||
err=1
|
||||
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
|
||||
echo "GEN $ref"
|
||||
|
Loading…
Reference in New Issue
Block a user