Commit fd497eb3 authored by sullivan's avatar sullivan Committed by Commit bot

Removed outdated documentation from bisect output, redirected it to chromium.org documentation

BUG=

Review URL: https://codereview.chromium.org/507723002

Cr-Commit-Position: refs/heads/master@{#292193}
parent 5a943768
...@@ -235,6 +235,15 @@ committed locally to run-perf-test.cfg. ...@@ -235,6 +235,15 @@ committed locally to run-perf-test.cfg.
For more details please visit For more details please visit
https://sites.google.com/a/chromium.org/dev/developers/performance-try-bots""" https://sites.google.com/a/chromium.org/dev/developers/performance-try-bots"""
REPRO_STEPS_TRYJOB_TELEMETRY = """
To reproduce on a performance try bot:
%(command)s
(Where <bot-name> comes from tools/perf/run_benchmark --browser=list)
For more details please visit
https://sites.google.com/a/chromium.org/dev/developers/performance-try-bots
"""
RESULTS_THANKYOU = """ RESULTS_THANKYOU = """
===== THANK YOU FOR CHOOSING BISECT AIRLINES ===== ===== THANK YOU FOR CHOOSING BISECT AIRLINES =====
Visit http://www.chromium.org/developers/core-principles for Chrome's policy Visit http://www.chromium.org/developers/core-principles for Chrome's policy
...@@ -2721,7 +2730,13 @@ class BisectPerformanceMetrics(object): ...@@ -2721,7 +2730,13 @@ class BisectPerformanceMetrics(object):
command += ('\nAlso consider passing --profiler=list to see available ' command += ('\nAlso consider passing --profiler=list to see available '
'profilers.') 'profilers.')
print REPRO_STEPS_LOCAL % {'command': command} print REPRO_STEPS_LOCAL % {'command': command}
print REPRO_STEPS_TRYJOB % {'command': command} if bisect_utils.IsTelemetryCommand(self.opts.command):
telemetry_command = re.sub(r'--browser=[^\s]+',
'--browser=<bot-name>',
command)
print REPRO_STEPS_TRYJOB_TELEMETRY % {'command': telemetry_command}
else:
print REPRO_STEPS_TRYJOB % {'command': command}
def _PrintOtherRegressions(self, other_regressions, revision_data): def _PrintOtherRegressions(self, other_regressions, revision_data):
"""Prints a section of the results about other potential regressions.""" """Prints a section of the results about other potential regressions."""
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment