Don't pass -v straight to valgrind, it's rarely useful. Just increasing
authorEvan Huus <eapache@gmail.com>
Sat, 2 Mar 2013 21:16:32 +0000 (21:16 -0000)
committerEvan Huus <eapache@gmail.com>
Sat, 2 Mar 2013 21:16:32 +0000 (21:16 -0000)
num-callers is usually enough.

svn path=/trunk/; revision=48017

tools/valgrind-wireshark.sh

index d465148d61dd5e5ca5de488f8004e0e065973288..cb503cde5b1ba1511fe789d69cd8582c3d2f3cf9 100755 (executable)
@@ -54,7 +54,7 @@ while getopts ":2b:C:lnrtTwcev" OPTCHAR ; do
            COMMAND_ARGS="-E 0.02"
            # We don't care about the output of editcap
            COMMAND_ARGS2="/dev/null" ;;
-        v) VERBOSE="-v --num-callers=256" ;;
+        v) VERBOSE="--num-callers=256" ;;
         *) printf "Unknown option -$OPTARG!\n"
            exit ;;
     esac