summaryrefslogtreecommitdiffstats
path: root/tools/valgrind/test_suppressions.py
diff options
context:
space:
mode:
authorjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-11 13:12:07 +0000
committerjochen@chromium.org <jochen@chromium.org@0039d316-1c4b-4281-b951-d872f2087c98>2010-10-11 13:12:07 +0000
commit538c7eba3474abc459671f9d7c43fe79fe5395ef (patch)
tree937b3e1842df270ae522d45ee72c7662ddacfa8f /tools/valgrind/test_suppressions.py
parent96d2f7f6c9dc5188e053ddfb106ab38459c31856 (diff)
downloadchromium_src-538c7eba3474abc459671f9d7c43fe79fe5395ef.zip
chromium_src-538c7eba3474abc459671f9d7c43fe79fe5395ef.tar.gz
chromium_src-538c7eba3474abc459671f9d7c43fe79fe5395ef.tar.bz2
Use 64bit error hashes everywhere.
BUG=none TEST=none Review URL: http://codereview.chromium.org/3711001 git-svn-id: svn://svn.chromium.org/chrome/trunk/src@62138 0039d316-1c4b-4281-b951-d872f2087c98
Diffstat (limited to 'tools/valgrind/test_suppressions.py')
-rw-r--r--tools/valgrind/test_suppressions.py6
1 files changed, 1 insertions, 5 deletions
diff --git a/tools/valgrind/test_suppressions.py b/tools/valgrind/test_suppressions.py
index a0f64bf..46bf68e 100644
--- a/tools/valgrind/test_suppressions.py
+++ b/tools/valgrind/test_suppressions.py
@@ -42,11 +42,7 @@ def ReadReportsFromFile(filename):
in_suppression = True
cur_supp = ["{"]
elif line.find("Suppression (error hash=#") == 0:
- last_hash = line[25:33]
- # Work around an (fixed) bug in memcheck_analyze.py.
- # TODO(jochen): delete this after a couple of days.
- if last_hash[0] == '-':
- last_hash = line[26:34]
+ last_hash = line[25:41]
# The line at the end of the file is assumed to store the URL of the report.
return reports,line