зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1731355 - Strip parameters from mozcrash signatures r=gsvelto
Differential Revision: https://phabricator.services.mozilla.com/D161483
This commit is contained in:
Родитель
af6da8d15f
Коммит
5c64c2db90
|
@ -397,6 +397,11 @@ class CrashInfo(object):
|
||||||
if retcode == 0:
|
if retcode == 0:
|
||||||
signature = self._generate_signature(json_output)
|
signature = self._generate_signature(json_output)
|
||||||
|
|
||||||
|
# Strip parameters from signature
|
||||||
|
pmatch = re.search(r"(.*)\(.*\)", signature)
|
||||||
|
if pmatch:
|
||||||
|
signature = pmatch.group(1)
|
||||||
|
|
||||||
else:
|
else:
|
||||||
if not self.stackwalk_binary:
|
if not self.stackwalk_binary:
|
||||||
errors.append(
|
errors.append(
|
||||||
|
|
Загрузка…
Ссылка в новой задаче