florian 16416a7f88 Add valgrind
git-svn-id: svn://svn.openwrt.org/openwrt/packages@9445 3c298f89-4303-0410-b956-a3cf2f4a3e73
2007-10-25 13:59:16 +00:00

11 lines
246 B
Bash

#!/bin/sh -e
#
# Valgrind wrapper
# Use special suppression file for uClibc
export VALGRIND_OPTS="$VALGRIND_OPTS --suppressions=/usr/lib/valgrind/uclibc.supp"
# Use 'exec' to avoid having another shell process hanging around.
exec $0.bin "$@"