fix incorrect accumulation of export video options each time the dialog is used
[ardour.git] / gtk2_ardour / arval
old mode 100644 (file)
new mode 100755 (executable)
index cdd709d..40c1816
@@ -1,5 +1,20 @@
 #!/bin/sh
-. `dirname "$0"`/../build/default/gtk2_ardour/ardev_common_waf.sh
-LD_LIBRARY_PATH=/usr/local/lib:$LD_LIBRARY_PATH
+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  --error-limit=no --num-callers=50 --tool=memcheck $TOP/$EXECUTABLE --novst "$@"
+exec valgrind --tool=memcheck \
+       $VALGRIND_OPTIONS \
+       --track-origins=yes \
+       --suppressions=${TOP}/tools/valgrind.supp \
+       $OBJSUPP \
+       $TOP/$EXECUTABLE --novst "$@"