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

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

Issue 2776543003: Change rebaseline-test-internal to take port name option. (Closed)
Patch Set: Add example port name and builder in help strings Created 3 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
Index: third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/optimize_baselines.py
diff --git a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/optimize_baselines.py b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/optimize_baselines.py
index 4b0b7710806811348ec0792b56d8b7cf8c8d463e..4d57b00e3c770d1ad39ae13ff65d4ddaa9461243 100644
--- a/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/optimize_baselines.py
+++ b/third_party/WebKit/Tools/Scripts/webkitpy/tool/commands/optimize_baselines.py
@@ -14,13 +14,14 @@ _log = logging.getLogger(__name__)
class OptimizeBaselines(AbstractRebaseliningCommand):
name = 'optimize-baselines'
- help_text = 'Reshuffles the baselines for the given tests to use as litte space on disk as possible.'
+ help_text = 'Reshuffles the baselines for the given tests to use as little space on disk as possible.'
show_in_main_help = True
argument_names = 'TEST_NAMES'
def __init__(self):
super(OptimizeBaselines, self).__init__(options=[
self.suffixes_option,
+ self.port_name_option,
] + self.platform_options)
def _optimize_baseline(self, optimizer, test_name):

Powered by Google App Engine
This is Rietveld 408576698