No bug. Fix a trivial regexp error. r=heycam.

This commit is contained in:
Nicholas Nethercote 2014-03-10 21:45:08 -07:00
parent 7361571aea
commit 7b45d2bd04

View File

@ -58,7 +58,7 @@ class OutputHandler(object):
r')'
# Match identifer chars, plus ':' for namespaces, and '\?' in order to
# match "???" which Valgrind sometimes produces.
self.re_stack_entry = r'^==\d+==.*0x[A-Z0-9]+: ([A-Za-z0_9_:\?]+)'
self.re_stack_entry = r'^==\d+==.*0x[A-Z0-9]+: ([A-Za-z0-9_:\?]+)'
self.re_suppression = r' *<insert_a_suppression_name_here>'
self.error_count = 0
self.suppression_count = 0