1#!/bin/bash
2PROGDIR=`dirname $0`
3unset LD_LIBRARY_PATH
4valgrind --tool=memcheck --error-limit=no --suppressions=$PROGDIR/debug/valgrind-suppress --gen-suppressions=all --leak-check=full --show-reachable=yes --num-callers=32 $PROGDIR/openvpn "$@"
5