From 538c7eba3474abc459671f9d7c43fe79fe5395ef Mon Sep 17 00:00:00 2001 From: "jochen@chromium.org" Date: Mon, 11 Oct 2010 13:12:07 +0000 Subject: 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 --- tools/valgrind/test_suppressions.py | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'tools/valgrind/test_suppressions.py') 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 -- cgit v1.1