Change to doval valgrind script. The openvpn command parameter is now

implied, so new usage is:

  ./doval [openvpn parms]

instead of:

  ./doval ./openvpn [openvpn parms]


git-svn-id: http://svn.openvpn.net/projects/openvpn/branches/BETA21/openvpn@5104 e7ae566f-a301-0410-adde-c780ea21d3b5
This commit is contained in:
james 2009-10-25 15:44:28 +00:00
parent 71b557ba9d
commit 0c7168e259
2 changed files with 14 additions and 1 deletions

View file

@ -1169,3 +1169,14 @@
fun:main
}
{
<insert a suppression name here>
Memcheck:Cond
fun:BN_mod_inverse
}
{
<insert a suppression name here>
Memcheck:Cond
fun:BN_div
}

4
doval
View file

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