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
|
|