summaryrefslogtreecommitdiffstats
path: root/tools/valgrind
diff options
context:
space:
mode:
authortimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-25 18:36:50 +0000
committertimurrrr@chromium.org <timurrrr@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-08-25 18:36:50 +0000
commit57a5a442f487a7b338249ff0f1b88668bf982b6d (patch)
tree00a1560e3332cc49bc64ddb50fd89413dc117cc5 /tools/valgrind
parente6ad36b02ff877693e4ae59929a825886023ebe2 (diff)
downloadchromium_src-57a5a442f487a7b338249ff0f1b88668bf982b6d.zip
chromium_src-57a5a442f487a7b338249ff0f1b88668bf982b6d.tar.gz
chromium_src-57a5a442f487a7b338249ff0f1b88668bf982b6d.tar.bz2
Quick-fix for the usage of the old name of a renamed function
TBR=glider Review URL: http://codereview.chromium.org/3130051 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@57355 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind')
-rw-r--r--tools/valgrind/tsan_analyze.py4
1 files changed, 3 insertions, 1 deletions
diff --git a/tools/valgrind/tsan_analyze.py b/tools/valgrind/tsan_analyze.py
index 708eed2..43e4544 100644
--- a/tools/valgrind/tsan_analyze.py
+++ b/tools/valgrind/tsan_analyze.py
@@ -119,7 +119,9 @@ class TsanAnalyzer:
tmp = []
while re.search(TsanAnalyzer.THREAD_CREATION_STR, self.line_):
- tmp.extend(self.ReadSection())
+ # TODO(glider): that's not really a race section but rather an {{{...}}}
+ # but use this wrong name to quick-fix the script.
+ tmp.extend(self.ReadRaceSection())
self.ReadLine()
if re.search(TsanAnalyzer.TSAN_RACE_DESCRIPTION, self.line_):
tmp.extend(self.ReadRaceSection())