Commit 0fb8c1d09ca55751aec5f42bae9a3bc19da3248d

Etienne Samson 2018-04-20T23:11:25

valgrind: bump num-callers to 50 for fuller stack traces

1
2
3
4
5
6
7
8
9
10
11
diff --git a/script/cileaks.sh b/script/cileaks.sh
index 6b53984..61b2557 100755
--- a/script/cileaks.sh
+++ b/script/cileaks.sh
@@ -9,5 +9,5 @@ then
 fi
 
 if [ -n "$VALGRIND" -a -e "$(which valgrind)" ]; then
-	valgrind --leak-check=full --show-reachable=yes --error-exitcode=125 --suppressions=./libgit2_clar.supp _build/libgit2_clar $@ -ionline -xbuf::oom
+	valgrind --leak-check=full --show-reachable=yes --error-exitcode=125 --num-callers=50 --suppressions=./libgit2_clar.supp _build/libgit2_clar $@ -ionline -xbuf::oom
 fi