#!/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 \
	"$@"
