diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-19 01:13:27 +0000 |
commit | 40a355a42d4a9444dc753c04c6608dade2f06a23 (patch) | |
tree | 871fc667d2de662f171103ce5ec067014ef85e61 /testing/mochitest/leaks.py | |
parent | Adding upstream version 124.0.1. (diff) | |
download | firefox-adbda400be353e676059e335c3c0aaf99e719475.tar.xz firefox-adbda400be353e676059e335c3c0aaf99e719475.zip |
Adding upstream version 125.0.1.upstream/125.0.1
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'testing/mochitest/leaks.py')
-rw-r--r-- | testing/mochitest/leaks.py | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/testing/mochitest/leaks.py b/testing/mochitest/leaks.py index 76b6610963..08ed649a0c 100644 --- a/testing/mochitest/leaks.py +++ b/testing/mochitest/leaks.py @@ -8,8 +8,8 @@ import re from operator import itemgetter -RE_DOCSHELL = re.compile("I\/DocShellAndDOMWindowLeak ([+\-]{2})DOCSHELL") -RE_DOMWINDOW = re.compile("I\/DocShellAndDOMWindowLeak ([+\-]{2})DOMWINDOW") +RE_DOCSHELL = re.compile(r"I\/DocShellAndDOMWindowLeak ([+\-]{2})DOCSHELL") +RE_DOMWINDOW = re.compile(r"I\/DocShellAndDOMWindowLeak ([+\-]{2})DOMWINDOW") class ShutdownLeaks(object): @@ -233,7 +233,7 @@ class ShutdownLeaks(object): self.hiddenDocShellsCount += 1 def _parseValue(self, line, name): - match = re.search("\[%s = (.+?)\]" % name, line) + match = re.search(r"\[%s = (.+?)\]" % name, line) if match: return match.group(1) return None @@ -329,17 +329,17 @@ class LSANLeaks(object): ) self.startRegExp = re.compile( - "==\d+==ERROR: LeakSanitizer: detected memory leaks" + r"==\d+==ERROR: LeakSanitizer: detected memory leaks" ) self.fatalErrorRegExp = re.compile( - "==\d+==LeakSanitizer has encountered a fatal error." + r"==\d+==LeakSanitizer has encountered a fatal error." ) self.symbolizerOomRegExp = re.compile( "LLVMSymbolizer: error reading file: Cannot allocate memory" ) - self.stackFrameRegExp = re.compile(" #\d+ 0x[0-9a-f]+ in ([^(</]+)") + self.stackFrameRegExp = re.compile(r" #\d+ 0x[0-9a-f]+ in ([^(</]+)") self.sysLibStackFrameRegExp = re.compile( - " #\d+ 0x[0-9a-f]+ \(([^+]+)\+0x[0-9a-f]+\)" + r" #\d+ 0x[0-9a-f]+ \(([^+]+)\+0x[0-9a-f]+\)" ) def log(self, line, path=""): |