mirror of
https://github.com/librempeg/librempeg
synced 2024-11-22 18:49:58 +00:00
tests: Do not include stdout/stderr or diff if the test passed
FATE currently discards this information anyway, so why waste the disk space? Signed-off-by: Michael Niedermayer <michaelni@gmx.at>
This commit is contained in:
parent
28e2bf90b9
commit
1a562adb01
@ -252,7 +252,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