OLD | NEW |
1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 1 # Copyright (c) 2012 The Chromium Authors. All rights reserved. |
2 # Use of this source code is governed by a BSD-style license that can be | 2 # Use of this source code is governed by a BSD-style license that can be |
3 # found in the LICENSE file. | 3 # found in the LICENSE file. |
4 | 4 |
5 """Helper functions to print buildbot messages.""" | 5 """Helper functions to print buildbot messages.""" |
6 | 6 |
7 def PrintLink(label, url): | 7 def PrintLink(label, url): |
8 """Adds a link with name |label| linking to |url| to current buildbot step. | 8 """Adds a link with name |label| linking to |url| to current buildbot step. |
9 | 9 |
10 Args: | 10 Args: |
11 label: A string with the name of the label. | 11 label: A string with the name of the label. |
12 url: A string of the URL. | 12 url: A string of the URL. |
13 """ | 13 """ |
14 print '@@@STEP_LINK@%s@%s@@@' % (label, url) | 14 print '@@@STEP_LINK@%s@%s@@@' % (label, url) |
15 | 15 |
16 | 16 |
17 def PrintMsg(msg): | 17 def PrintMsg(msg): |
18 """Appends |msg| to the current buildbot step text. | 18 """Appends |msg| to the current buildbot step text. |
19 | 19 |
20 Args: | 20 Args: |
21 msg: String to be appended. | 21 msg: String to be appended. |
22 """ | 22 """ |
23 print '@@@STEP_TEXT@%s@@@' % msg | 23 print '@@@STEP_TEXT@%s@@@' % msg |
24 | 24 |
25 | 25 |
| 26 def PrintSummaryText(msg): |
| 27 """Appends |msg| to main build summary. Visible from waterfall. |
| 28 |
| 29 Args: |
| 30 msg: String to be appended. |
| 31 """ |
| 32 print '@@@STEP_SUMMARY_TEXT@%s@@@' % msg |
| 33 |
| 34 |
26 def PrintError(): | 35 def PrintError(): |
27 """Marks the current step as failed.""" | 36 """Marks the current step as failed.""" |
28 print '@@@STEP_FAILURE@@@' | 37 print '@@@STEP_FAILURE@@@' |
29 | 38 |
30 | 39 |
31 def PrintWarning(): | 40 def PrintWarning(): |
32 """Marks the current step with a warning.""" | 41 """Marks the current step with a warning.""" |
33 print '@@@STEP_WARNINGS@@@' | 42 print '@@@STEP_WARNINGS@@@' |
34 | 43 |
35 | 44 |
36 def PrintNamedStep(step): | 45 def PrintNamedStep(step): |
37 print '@@@BUILD_STEP %s@@@' % step | 46 print '@@@BUILD_STEP %s@@@' % step |
OLD | NEW |