Commit 3b1e35d4 authored by Timothy Gu's avatar Timothy Gu Committed by Luca Barbato

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: 's avatarLuca Barbato <lu_zero@gentoo.org>
parent d34039b1
......@@ -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"
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment