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

Unified Diff: Tools/Scripts/webkitpy/layout_tests/port/base.py

Issue 219083002: Bug fix: Get the leak log not from error strings but from the line (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 6 years, 9 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 | « no previous file | Tools/Scripts/webkitpy/layout_tests/port/driver.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: Tools/Scripts/webkitpy/layout_tests/port/base.py
diff --git a/Tools/Scripts/webkitpy/layout_tests/port/base.py b/Tools/Scripts/webkitpy/layout_tests/port/base.py
index 559f7c6b4529e304e3ff421ccb2a037b9d727f2a..66842c7a794a2ce30696d6b1c04a5d91b1b28200 100644
--- a/Tools/Scripts/webkitpy/layout_tests/port/base.py
+++ b/Tools/Scripts/webkitpy/layout_tests/port/base.py
@@ -1512,10 +1512,6 @@ class Port(object):
'\n'.join(('STDOUT: ' + l) for l in stdout_lines),
'\n'.join(('STDERR: ' + l) for l in stderr_lines)))
- def _get_leak_log(self, name, pid, stdout, stderr, newer_than):
- match = re.match('#LEAK - (\S+) pid (\d+) (.+)\n', stderr)
- return (stderr, match.group(3))
-
def look_for_new_crash_logs(self, crashed_processes, start_time):
pass
« no previous file with comments | « no previous file | Tools/Scripts/webkitpy/layout_tests/port/driver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698