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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py

Issue 2848353002: Add WPTManifest log line to diagnose slow manifest generation (Closed)
Patch Set: Add two more log lines in the main function Created 3 years, 8 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 | third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_manifest.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
index cbcb91b2c4799cf48263c251538df02037ac0ba6..5639c14189494d944ca834829a03eb650d656da0 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/layout_tests/controllers/manager.py
@@ -101,7 +101,12 @@ class Manager(object):
running_all_tests = False
self._printer.write_update('Generating MANIFEST.json for web-platform-tests ...')
- WPTManifest.ensure_manifest(self._port.host)
+
+ try:
+ _log.info('run-webkit-tests - calling ensure_manifest')
+ WPTManifest.ensure_manifest(self._port.host)
+ finally:
+ _log.info('run-webkit-tests - completed ensure_manfiest')
try:
paths, all_test_names, running_all_tests = self._collect_tests(args)
« no previous file with comments | « no previous file | third_party/WebKit/Tools/Scripts/webkitpy/w3c/wpt_manifest.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698