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

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

Issue 27055003: Remove a bunch of unused webkitpy code from tool/, common/checkout/ and common/config/ (Closed) Base URL: svn://svn.chromium.org/blink/trunk
Patch Set: Created 7 years, 2 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: Tools/Scripts/webkitpy/tool/commands/rebaseline.py
diff --git a/Tools/Scripts/webkitpy/tool/commands/rebaseline.py b/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
index a4a952b6e60c31abef2f8843381ecfdf84d1be2f..2b8e454116890efd3f92d06b5ea6ecad67970dcc 100644
--- a/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
+++ b/Tools/Scripts/webkitpy/tool/commands/rebaseline.py
@@ -227,6 +227,7 @@ class RebaselineTest(BaseInternalRebaselineCommand):
class OptimizeBaselines(AbstractRebaseliningCommand):
name = "optimize-baselines"
help_text = "Reshuffles the baselines for the given tests to use as litte space on disk as possible."
+ show_in_main_help = True
argument_names = "TEST_NAMES"
def __init__(self):
@@ -255,6 +256,7 @@ class OptimizeBaselines(AbstractRebaseliningCommand):
class AnalyzeBaselines(AbstractRebaseliningCommand):
name = "analyze-baselines"
help_text = "Analyzes the baselines for the given tests and prints results that are identical."
+ show_in_main_help = True
argument_names = "TEST_NAMES"
def __init__(self):
@@ -492,6 +494,7 @@ class RebaselineJson(AbstractParallelRebaselineCommand):
class RebaselineExpectations(AbstractParallelRebaselineCommand):
name = "rebaseline-expectations"
help_text = "Rebaselines the tests indicated in TestExpectations."
+ show_in_main_help = True
def __init__(self):
super(RebaselineExpectations, self).__init__(options=[
@@ -539,6 +542,7 @@ class RebaselineExpectations(AbstractParallelRebaselineCommand):
class Rebaseline(AbstractParallelRebaselineCommand):
name = "rebaseline"
help_text = "Rebaseline tests with results from the build bots. Shows the list of failing tests on the builders if no test names are provided."
+ show_in_main_help = True
argument_names = "[TEST_NAMES]"
def __init__(self):
@@ -841,6 +845,7 @@ class AutoRebaseline(AbstractParallelRebaselineCommand):
class RebaselineOMatic(AbstractDeclarativeCommand):
name = "rebaseline-o-matic"
help_text = "Calls webkit-patch auto-rebaseline in a loop."
+ show_in_main_help = True
SLEEP_TIME_IN_SECONDS = 30
« no previous file with comments | « Tools/Scripts/webkitpy/tool/commands/queuestest.py ('k') | Tools/Scripts/webkitpy/tool/commands/rebaselineserver.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698