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

Unified Diff: tools/bots/bot.py

Issue 12450026: Added tools/bots/editor.py to build the editor (using gyp/build.py) and run editor tests (Closed) Base URL: https://dart.googlecode.com/svn/branches/bleeding_edge/dart
Patch Set: Created 7 years, 9 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 | « client/tools/buildbot_annotated_steps.py ('k') | tools/bots/editor.py » ('j') | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: tools/bots/bot.py
diff --git a/tools/bots/bot.py b/tools/bots/bot.py
index 0d9284b9b2f2270b116f27fe77c4549e63ce6d1e..a050b428e73b927cfe1b93dea90b69bc4d861716 100644
--- a/tools/bots/bot.py
+++ b/tools/bots/bot.py
@@ -86,10 +86,12 @@ class BuildStep(object):
def __enter__(self):
print '@@@BUILD_STEP %s@@@' % self.name
+ sys.stdout.flush()
def __exit__(self, type, value, traceback):
if value:
print '@@@STEP_FAILURE@@@'
+ sys.stdout.flush()
if self.swallow_error and isinstance(value, OSError):
return True
« no previous file with comments | « client/tools/buildbot_annotated_steps.py ('k') | tools/bots/editor.py » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698