summaryrefslogtreecommitdiffstats
path: root/tools
diff options
context:
space:
mode:
authornirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-11 13:30:07 +0000
committernirnimesh@chromium.org <nirnimesh@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2009-06-11 13:30:07 +0000
commitb723acc5e3f3f9bbd48ce5ff82ff9a2646229843 (patch)
treee34c9628a825568a21abe9eaf468ae85edb13c8c /tools
parent6f050a3f3bed7ce6bbe79e8d3870f0fcb7499bce (diff)
downloadchromium_src-b723acc5e3f3f9bbd48ce5ff82ff9a2646229843.zip
chromium_src-b723acc5e3f3f9bbd48ce5ff82ff9a2646229843.tar.gz
chromium_src-b723acc5e3f3f9bbd48ce5ff82ff9a2646229843.tar.bz2
Increase valgrind's --num-callers to 50
Review URL: http://codereview.chromium.org/119445 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@18162 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools')
-rwxr-xr-xtools/valgrind/valgrind_test.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py
index e7a4e39..cff96f2 100755
--- a/tools/valgrind/valgrind_test.py
+++ b/tools/valgrind/valgrind_test.py
@@ -195,7 +195,7 @@ class ValgrindLinux(Valgrind):
else:
# construct the valgrind command
proc = ["valgrind", "--smc-check=all", "--leak-check=full",
- "--num-callers=30"]
+ "--num-callers=50"]
if self._options.show_all_leaks:
proc += ["--show-reachable=yes"];