fix incorrect accumulation of export video options each time the dialog is used
[ardour.git] / gtk2_ardour / arval
index 7267857348a65fd77bf35f34b8610f13cf06caa3..40c18165da9889e77ac2a2034f48eef843a28b60 100755 (executable)
@@ -1,4 +1,20 @@
 #!/bin/sh
-. `dirname "$0"`/ardev_common.sh
+VALGRIND_OPTIONS="$VALGRIND_OPTIONS --num-callers=50"
+VALGRIND_OPTIONS="$VALGRIND_OPTIONS --error-limit=no"
+#VALGRIND_OPTIONS="$VALGRIND_OPTIONS --leak-check=full --leak-resolution=high"
+#VALGRIND_OPTIONS="$VALGRIND_OPTIONS --show-leak-kinds=all -v"
+#VALGRIND_OPTIONS="$VALGRIND_OPTIONS --log-file=/tmp/ardour-%p.log"
+#VALGRIND_OPTIONS="$VALGRIND_OPTIONS --gen-suppressions=all"
+
+TOP=`dirname "$0"`/..
+. $TOP/build/gtk2_ardour/ardev_common_waf.sh
+if uname | grep -q arwin; then
+       OBJSUPP="--suppressions=${TOP}/tools/objc.supp"
+fi
 export ARDOUR_RUNNING_UNDER_VALGRIND=TRUE
-exec valgrind  --num-callers=50 --tool=memcheck $EXECUTABLE --novst "$@"
+exec valgrind --tool=memcheck \
+       $VALGRIND_OPTIONS \
+       --track-origins=yes \
+       --suppressions=${TOP}/tools/valgrind.supp \
+       $OBJSUPP \
+       $TOP/$EXECUTABLE --novst "$@"