tests: delete the valgrind logs if they're empty

This commit is contained in:
Lubomir Rintel 2015-06-04 12:30:30 +02:00
parent d909e76d9e
commit df0676ab00

View file

@ -50,6 +50,9 @@ if [ $RESULT -ne 0 -a $RESULT -ne 77 ]; then
echo Files without debugging symbols: $UNRESOLVED >&2
fi
fi
exit $RESULT
fi
find -name "$LOGFILE" -size 0 -delete
exit $RESULT