Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(1758)

Unified Diff: tools/valgrind/suppressions.py

Issue 8404034: Widen and add some suppressions for Valgrind on x64 (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/src/
Patch Set: Created 9 years, 2 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/valgrind/suppressions.py
===================================================================
--- tools/valgrind/suppressions.py (revision 107318)
+++ tools/valgrind/suppressions.py (working copy)
@@ -60,6 +60,10 @@
re_line += re.escape(re_bucket)
re_bucket = ''
re_line += '.*'
+ elif char == '?':
+ re_line += re.escape(re_bucket)
+ re_bucket = ''
+ re_line += '.'
else: # there can't be any '\*'s in a stack trace
re_bucket += char
re_line += re.escape(re_bucket)
« no previous file with comments | « tools/valgrind/memcheck/suppressions.txt ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698