mirror of
https://github.com/OpenVPN/openvpn.git
synced 2026-02-03 20:39:40 -05:00
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:
parent
71b557ba9d
commit
0c7168e259
2 changed files with 14 additions and 1 deletions
|
|
@ -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
4
doval
|
|
@ -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 "$@"
|
||||
|
|
|
|||
Loading…
Reference in a new issue