From c2233f44848c61652c4e65df618e5aa0bcd2c3aa Mon Sep 17 00:00:00 2001 From: Lubomir Rintel Date: Thu, 4 Jun 2015 12:26:25 +0200 Subject: [PATCH] tests: don't limit the valgrind tracebacks to 12 frames The glib tracebacks are typically longer. (cherry picked from commit d909e76d9ea21c74e1db9a5e671794a0b1234ad1) --- tools/run-test-valgrind.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/run-test-valgrind.sh b/tools/run-test-valgrind.sh index 1b4e2c2f9b..0cdada7b6b 100755 --- a/tools/run-test-valgrind.sh +++ b/tools/run-test-valgrind.sh @@ -26,6 +26,7 @@ $LIBTOOL --mode=execute "$VALGRIND" \ --leak-check=full \ --gen-suppressions=all \ --suppressions="$SUPPRESSIONS" \ + --num-callers=100 \ --log-file="$LOGFILE" \ "$@" RESULT=$?