File: valgrind_wrapper

package info (click to toggle)
libspf2 1.2.5-4%2Betch1
  • links: PTS
  • area: main
  • in suites: etch
  • size: 2,756 kB
  • ctags: 1,177
  • sloc: ansic: 12,265; sh: 8,473; perl: 218; makefile: 130
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 \
	"$@"