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

Unified Diff: tools/bisect_utils.py

Issue 27165006: First pass performance try bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Changes from review. 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
« no previous file with comments | « tools/bisect-perf-regression.py ('k') | tools/run-bisect-perf-regression.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bisect_utils.py
diff --git a/tools/bisect_utils.py b/tools/bisect_utils.py
index f6111c2a30f4586f83f20e29b1c81214c001c6c5..a9de56462bcf13a4ce57fa3bda493bf98c672dff 100644
--- a/tools/bisect_utils.py
+++ b/tools/bisect_utils.py
@@ -89,6 +89,19 @@ def OutputAnnotationStepClosed():
sys.stdout.flush()
+def OutputAnnotationStepLink(label, url):
+ """Outputs appropriate annotation to print a link.
+
+ Args:
+ label: The name to print.
+ url: The url to print.
+ """
+ print
+ print '@@@STEP_LINK@%s@%s@@@' % (label, url)
+ print
+ sys.stdout.flush()
+
+
def CreateAndChangeToSourceDirectory(working_directory):
"""Creates a directory 'bisect' as a subdirectory of 'working_directory'. If
the function is successful, the current working directory will change to that
« no previous file with comments | « tools/bisect-perf-regression.py ('k') | tools/run-bisect-perf-regression.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698