diff options
Diffstat (limited to 'build/android/pylib/buildbot_report.py')
-rw-r--r-- | build/android/pylib/buildbot_report.py | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/build/android/pylib/buildbot_report.py b/build/android/pylib/buildbot_report.py index fdb5203..1e549de 100644 --- a/build/android/pylib/buildbot_report.py +++ b/build/android/pylib/buildbot_report.py @@ -26,3 +26,12 @@ def PrintMsg(msg): def PrintError(): """Marks the current step as failed.""" print '@@@STEP_FAILURE@@@' + + +def PrintWarning(): + """Marks the current step with a warning.""" + print '@@@STEP_WARNINGS@@@' + + +def PrintNamedStep(step): + print '@@@BUILD_STEP %s@@@' % step |