Location: LEMON/LEMON-official/scripts/valgrind-wrapper.sh - annotation

Load file history
350 B
application/x-shellscript
gravatar
ladanyi@tmit.bme.hu
Optionally use valgrind when running tests + other build system fixes
#!/bin/sh

# Run in valgrind, with leak checking enabled

valgrind -q --leak-check=full "$@" 2> .valgrind-log

# Save the test result

result="$?"

# Valgrind should generate no error messages

log_contents="`cat .valgrind-log`"

if [ "$log_contents" != "" ]; then
        cat .valgrind-log >&2
        result=1
fi

rm -f .valgrind-log

exit $result