1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22
#!/bin/sh # # # Our valgrind "error" wrapper. valgrind --leak-check=full -q "$@" 2> valgrind.tmp result="$?" # verify no errors output="`cat valgrind.tmp`" if [ "$output" != "" ]; then cat valgrind.tmp >&2 result=1 fi rm valgrind.tmp exit $result