| Index: scripts/slave/chromium/dart_buildbot_run.py
|
| ===================================================================
|
| --- scripts/slave/chromium/dart_buildbot_run.py (revision 288041)
|
| +++ scripts/slave/chromium/dart_buildbot_run.py (working copy)
|
| @@ -22,8 +22,11 @@
|
| script = 'src/dart/tools/dartium/buildbot_annotated_steps.py'
|
| else:
|
| script = 'src/dartium_tools/buildbot_annotated_steps.py'
|
| - chromium_utils.RunCommand([sys.executable, script])
|
| + result = chromium_utils.RunCommand([sys.executable, script])
|
|
|
| + if result:
|
| + print 'Running annotated steps % failed' % script
|
| + return 1
|
| # BIG HACK
|
| # Normal ninja clobbering does not work due to symlinks/python on windows
|
| # Full clobbering before building does not work since it will destroy
|
|
|