File: valgrind_wrapper

package info (click to toggle)
libspf2 1.0.4-4
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 2,676 kB
  • ctags: 1,065
  • sloc: ansic: 11,880; sh: 8,437; perl: 212; makefile: 99
file content (13 lines) | stat: -rwxr-xr-x 199 bytes parent folder | download | duplicates (4)
1
2
3
4
5
6
7
8
9
10
11
12
13
#!/bin/sh

# just to make gdb<->bash easier

PROG=../src/spfquery/spfquery_static

valgrind \
	--logfile=.valgrind/log \
	--leak-check=yes \
	--show-reachable=yes \
	--num-callers=8 \
	$PROG \
	"$@"