Location: LEMON/LEMON-main/scripts/valgrind-wrapper.sh

Load file history
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