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

Unified Diff: tools/auto_bisect/bisect_printer.py

Issue 1087683002: Remove <> in bisect output. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Shorten lines to less than 80 columns. Created 5 years, 8 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 | « no previous file | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/auto_bisect/bisect_printer.py
diff --git a/tools/auto_bisect/bisect_printer.py b/tools/auto_bisect/bisect_printer.py
index 27866913c23c8fb66a14151e9116beb20eb40526..34baa319030d32db09ed716150165c20e3639336 100644
--- a/tools/auto_bisect/bisect_printer.py
+++ b/tools/auto_bisect/bisect_printer.py
@@ -64,7 +64,7 @@ To run locally:
REPRO_STEPS_TRYJOB = """
To reproduce on a performance try bot:
1. Edit run-perf-test.cfg
- 2. $ git try -b <bot> --svn_repo='svn://svn.chromium.org/chrome-try/try-perf'
+ 2. git try -b bot-name --svn_repo='svn://svn.chromium.org/chrome-try/try-perf'
Notes:
a) Follow the in-file instructions in run-perf-test.cfg.
@@ -81,7 +81,7 @@ 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)
+(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
@@ -120,7 +120,8 @@ class BisectPrinter(object):
else:
build_status = 'Bad'
- print ' %20s %40s %s' % (revision_state.depot, revision_state.revision,
+ print ' %20s %40s %s' % (revision_state.depot,
+ revision_state.revision,
build_status)
print
@@ -343,7 +344,7 @@ class BisectPrinter(object):
print REPRO_STEPS_LOCAL
if bisect_utils.IsTelemetryCommand(self.opts.command):
telemetry_command = re.sub(r'--browser=[^\s]+',
- '--browser=<bot-name>',
+ '--browser=bot-name',
command)
print REPRO_STEPS_TRYJOB_TELEMETRY % {'command': telemetry_command}
else:
« no previous file with comments | « no previous file | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698