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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py

Issue 2648323006: Use update_w3c_test_expectations directly in same process. (Closed)
Patch Set: Created 3 years, 11 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 | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
index 027a3b792b60597c2cb36359a767b11e57eb56a8..f3ba461c8c2d31219692409476f582d44b8537dc 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/w3c/update_w3c_test_expectations.py
@@ -293,7 +293,9 @@ class W3CExpectationsLineAdder(object):
Args:
line_list: A list of lines to add to the TestExpectations file.
"""
- _log.debug('Lines to write to TestExpectations: %r', line_list)
+ _log.info('Lines to write to TestExpectations:')
+ for line in line_list:
+ _log.info(' %s', line)
port = self.host.port_factory.get()
expectations_file_path = port.path_to_generic_test_expectations_file()
file_contents = self.host.filesystem.read_text_file(expectations_file_path)
@@ -330,7 +332,9 @@ class W3CExpectationsLineAdder(object):
from `webkit-patch rebaseline-cl`.
"""
tests_to_rebaseline, tests_results = self.get_tests_to_rebaseline(tests_results)
- _log.debug('Tests to rebaseline: %r', tests_to_rebaseline)
+ _log.info('Tests to rebaseline:')
+ for test in tests_to_rebaseline:
+ _log.info(' %s', test)
if tests_to_rebaseline:
webkit_patch = self.host.filesystem.join(
self.finder.chromium_base(), self.finder.webkit_base(), self.finder.path_to_script('webkit-patch'))
« no previous file with comments | « third_party/WebKit/Tools/Scripts/webkitpy/w3c/deps_updater.py ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698