Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fixes Bug 854456 - Processor2012 C skiplist regex ini configman converter change #1152

Merged
merged 1 commit into from Mar 27, 2013
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
11 changes: 7 additions & 4 deletions socorro/processor/signature_utilities.py
Expand Up @@ -61,7 +61,7 @@ class CSignatureTool(SignatureTool):
'irrelevant_signature_re',
doc='a regular expression matching frame signatures that should be '
'ignored when generating an overall signature',
default='|'.join([
default="""'|'.join([
'@0x[0-9a-fA-F]{2,}',
'@0x[1-9a-fA-F]',
'ashmem',
Expand Down Expand Up @@ -107,14 +107,15 @@ class CSignatureTool(SignatureTool):
'RealMsgWaitFor.*'
'_ZdlPv',
'zero',
])
])""",
from_string_converter=eval
)
required_config.add_option(
'prefix_signature_re',
doc='a regular expression matching frame signatures that should always '
'be coupled with the following frame signature when generating an '
'overall signature',
default='|'.join([
default="""'|'.join([
'@0x0',
'.*abort',
'_alloca_probe.*',
Expand Down Expand Up @@ -253,7 +254,9 @@ class CSignatureTool(SignatureTool):
'WSARecv.*',
'WSASend.*',
'_ZdaPvRKSt9nothrow_t\"',
]))
])""",
from_string_converter=eval
)
required_config.add_option(
'signatures_with_line_numbers_re',
doc='any signatures that match this list should be combined with their '
Expand Down