summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/valgrind_test.py
diff options
context:
space:
mode:
authordkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-16 20:00:40 +0000
committerdkegel@google.com <dkegel@google.com@0039d316-1c4b-4281-b951-d872f2087c98>2009-07-16 20:00:40 +0000
commit386414b51924681ddd1735304ac9221921c9956d (patch)
tree7802d206b93a92e8d0aa27186b2d338b13c58a3e /tools/valgrind/valgrind_test.py
parentb06612fa2e390c0727393f03863186ab6d01a1c8 (diff)
downloadchromium_src-386414b51924681ddd1735304ac9221921c9956d.zip
chromium_src-386414b51924681ddd1735304ac9221921c9956d.tar.gz
chromium_src-386414b51924681ddd1735304ac9221921c9956d.tar.bz2
Valgrind doesn't have an option (yet) to put suppressions into its xml
output file, so generate them by hand, and always print them. Lets you copy and paste from the bot into the suppressions file rather than having to reproduce yourself, which is handy for hard-to-reproduce warnings. BUG=none TEST=watch the bot. See the suppressions. Review URL: http://codereview.chromium.org/149762 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@20887 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/valgrind_test.py')
-rwxr-xr-xtools/valgrind/valgrind_test.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/tools/valgrind/valgrind_test.py b/tools/valgrind/valgrind_test.py
index c9e7e46..9409fcd 100755
--- a/tools/valgrind/valgrind_test.py
+++ b/tools/valgrind/valgrind_test.py
@@ -205,7 +205,8 @@ class ValgrindTool(object):
proc = ["valgrind",
"--tool=%s" % tool_name,
"--smc-check=all",
- "--num-callers=%i" % self._num_callers]
+ "--num-callers=%i" % self._num_callers,
+ "--demangle=no"]
if self._options.trace_children:
proc += ["--trace-children=yes"];