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

Unified Diff: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py

Issue 2061963002: Disable NeedsRebaseline and webkit-patch rebaseline[-expectations] (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Disable NeedsRebaseline and webkit-patch rebaseline[-expectations] Created 4 years, 6 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
index 1f2ec67aa430126b032ff82c01c1aa7a3982ff11..94e8f2ae09d46d6b49bc04e703f4a457c891d71d 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
@@ -534,6 +534,10 @@ class RebaselineJson(AbstractParallelRebaselineCommand):
])
def execute(self, options, args, tool):
+ # TODO(crbug.com/574272) - Reenable this after the bug is fixed.
+ _log.error("Rebaseline is broken at the moment. See crbug.com/574272.")
+ return
+
self._rebaseline(options, json.loads(sys.stdin.read()))
@@ -573,6 +577,10 @@ class RebaselineExpectations(AbstractParallelRebaselineCommand):
self._test_prefix_list[test_name][builder_name] = suffixes
def execute(self, options, args, tool):
+ # TODO(crbug.com/574272) - Reenable this after the bug is fixed.
+ _log.error("Rebaseline is broken at the moment. See crbug.com/574272.")
+ return
+
options.results_directory = None
self._test_prefix_list = {}
port_names = tool.port_factory.all_port_names(options.platform)
@@ -610,6 +618,10 @@ class Rebaseline(AbstractParallelRebaselineCommand):
return self._tool.buildbot.builder_with_name(name)
def execute(self, options, args, tool):
+ # TODO(crbug.com/574272) - Reenable this after the bug is fixed.
+ _log.error("Rebaseline is broken at the moment. See crbug.com/574272.")
+ return
+
if not args:
_log.error("Must list tests to rebaseline.")
return

Powered by Google App Engine
This is Rietveld 408576698