| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. |
| 3 # Use of this source code is governed by a BSD-style license that can be | 3 # Use of this source code is governed by a BSD-style license that can be |
| 4 # found in the LICENSE file. | 4 # found in the LICENSE file. |
| 5 | 5 |
| 6 """Fetch the latest results for a pre-selected set of builders we care about. | 6 """Fetch the latest results for a pre-selected set of builders we care about. |
| 7 If we find a 'good' revision -- based on criteria explained below -- we | 7 If we find a 'good' revision -- based on criteria explained below -- we |
| 8 mark the revision as LKGR, and POST it to the LKGR server: | 8 mark the revision as LKGR, and POST it to the LKGR server: |
| 9 | 9 |
| 10 http://chromium-status.appspot.com/lkgr | 10 http://chromium-status.appspot.com/lkgr |
| (...skipping 133 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 144 'ipc_tests', | 144 'ipc_tests', |
| 145 'sql_unittests', | 145 'sql_unittests', |
| 146 'sync_unit_tests', | 146 'sync_unit_tests', |
| 147 'ui_tests', | 147 'ui_tests', |
| 148 'unit_tests', | 148 'unit_tests', |
| 149 ], | 149 ], |
| 150 'Linux Builder (dbg)': [ | 150 'Linux Builder (dbg)': [ |
| 151 'compile', | 151 'compile', |
| 152 ], | 152 ], |
| 153 'Linux Tests (dbg)(1)': [ | 153 'Linux Tests (dbg)(1)': [ |
| 154 'check_deps', 'browser_tests', 'net_unittests', | 154 'check_deps', |
| 155 'check_licenses', |
| 156 'browser_tests', |
| 157 'net_unittests', |
| 155 ], | 158 ], |
| 156 'Linux Tests (dbg)(2)': [ | 159 'Linux Tests (dbg)(2)': [ |
| 157 'ui_tests', | 160 'ui_tests', |
| 158 'content_unittests', | 161 'content_unittests', |
| 159 'ipc_tests', | 162 'ipc_tests', |
| 160 'sync_unit_tests', | 163 'sync_unit_tests', |
| 161 'unit_tests', | 164 'unit_tests', |
| 162 'sql_unittests', | 165 'sql_unittests', |
| 163 'interactive_ui_tests', | 166 'interactive_ui_tests', |
| 164 'base_unittests', | 167 'base_unittests', |
| (...skipping 246 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 411 for master in options.notify: | 414 for master in options.notify: |
| 412 NotifyMaster(master, candidate, options.dry) | 415 NotifyMaster(master, candidate, options.dry) |
| 413 else: | 416 else: |
| 414 VerbosePrint('No newer LKGR found than current %s' % lkgr) | 417 VerbosePrint('No newer LKGR found than current %s' % lkgr) |
| 415 VerbosePrint('-' * 80) | 418 VerbosePrint('-' * 80) |
| 416 | 419 |
| 417 return 0 | 420 return 0 |
| 418 | 421 |
| 419 if __name__ == '__main__': | 422 if __name__ == '__main__': |
| 420 sys.exit(main()) | 423 sys.exit(main()) |
| OLD | NEW |