| OLD | NEW |
| 1 #!/usr/bin/python | 1 #!/usr/bin/python |
| 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file | 2 # Copyright (c) 2011, the Dart project authors. Please see the AUTHORS file |
| 3 # for details. All rights reserved. Use of this source code is governed by a | 3 # for details. All rights reserved. Use of this source code is governed by a |
| 4 # BSD-style license that can be found in the LICENSE file. | 4 # BSD-style license that can be found in the LICENSE file. |
| 5 | 5 |
| 6 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 6 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 7 # Use of this source code is governed by a BSD-style license that can be | 7 # Use of this source code is governed by a BSD-style license that can be |
| 8 # found in the LICENSE file. | 8 # found in the LICENSE file. |
| 9 | 9 |
| 10 """Dart client buildbot steps | 10 """Dart client buildbot steps |
| (...skipping 183 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 194 status = ProcessBot(name, 'android') | 194 status = ProcessBot(name, 'android') |
| 195 elif name.startswith('cross') or name.startswith('target'): | 195 elif name.startswith('cross') or name.startswith('target'): |
| 196 status = ProcessBot(name, 'cross-vm', | 196 status = ProcessBot(name, 'cross-vm', |
| 197 custom_env=EnvironmentWithoutBotoConfig()) | 197 custom_env=EnvironmentWithoutBotoConfig()) |
| 198 elif name.startswith('linux-distribution-support'): | 198 elif name.startswith('linux-distribution-support'): |
| 199 status = ProcessBot(name, 'linux_distribution_support') | 199 status = ProcessBot(name, 'linux_distribution_support') |
| 200 elif name.startswith('ft'): | 200 elif name.startswith('ft'): |
| 201 status = ProcessBot(name, 'functional_testing') | 201 status = ProcessBot(name, 'functional_testing') |
| 202 elif name.startswith('version-checker'): | 202 elif name.startswith('version-checker'): |
| 203 status = ProcessBot(name, 'version_checker') | 203 status = ProcessBot(name, 'version_checker') |
| 204 elif name.startswith('dart2js-dump-info'): |
| 205 status = ProcessBot(name, 'dart2js_dump_info') |
| 204 else: | 206 else: |
| 205 status = ProcessBot(name, 'compiler') | 207 status = ProcessBot(name, 'compiler') |
| 206 | 208 |
| 207 if status: | 209 if status: |
| 208 print '@@@STEP_FAILURE@@@' | 210 print '@@@STEP_FAILURE@@@' |
| 209 | 211 |
| 210 return status | 212 return status |
| 211 | 213 |
| 212 | 214 |
| 213 if __name__ == '__main__': | 215 if __name__ == '__main__': |
| 214 sys.exit(main()) | 216 sys.exit(main()) |
| OLD | NEW |