| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 129 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 140 ], | 140 ], |
| 141 # 'Interactive Tests (dbg)': [ | 141 # 'Interactive Tests (dbg)': [ |
| 142 # 'interactive_ui_tests', | 142 # 'interactive_ui_tests', |
| 143 # ], | 143 # ], |
| 144 'Win Aura Builder': [ | 144 'Win Aura Builder': [ |
| 145 'compile', | 145 'compile', |
| 146 ], | 146 ], |
| 147 'Win Aura Tests (1)': [ | 147 'Win Aura Tests (1)': [ |
| 148 'ash_unittests', | 148 'ash_unittests', |
| 149 'aura_unittests', | 149 'aura_unittests', |
| 150 'events_unittests', |
| 150 'browser_tests', | 151 'browser_tests', |
| 151 'content_browsertests', | 152 'content_browsertests', |
| 152 ], | 153 ], |
| 153 'Win Aura Tests (2)': [ | 154 'Win Aura Tests (2)': [ |
| 154 'browser_tests', | 155 'browser_tests', |
| 155 'compositor_unittests', | 156 'compositor_unittests', |
| 156 'content_unittests', | 157 'content_unittests', |
| 157 'unit_tests', | 158 'unit_tests', |
| 158 'views_unittests', | 159 'views_unittests', |
| 159 ], | 160 ], |
| (...skipping 92 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 252 'aura_unittests', | 253 'aura_unittests', |
| 253 'base_unittests', | 254 'base_unittests', |
| 254 'browser_tests', | 255 'browser_tests', |
| 255 'cacheinvalidation_unittests', | 256 'cacheinvalidation_unittests', |
| 256 'compile', | 257 'compile', |
| 257 'compositor_unittests', | 258 'compositor_unittests', |
| 258 'content_browsertests', | 259 'content_browsertests', |
| 259 'content_unittests', | 260 'content_unittests', |
| 260 'crypto_unittests', | 261 'crypto_unittests', |
| 261 'device_unittests', | 262 'device_unittests', |
| 263 'events_unittests', |
| 262 'gpu_unittests', | 264 'gpu_unittests', |
| 263 'interactive_ui_tests', | 265 'interactive_ui_tests', |
| 264 'ipc_tests', | 266 'ipc_tests', |
| 265 'jingle_unittests', | 267 'jingle_unittests', |
| 266 'media_unittests', | 268 'media_unittests', |
| 267 'net_unittests', | 269 'net_unittests', |
| 268 'ppapi_unittests', | 270 'ppapi_unittests', |
| 269 'printing_unittests', | 271 'printing_unittests', |
| 270 'remoting_unittests', | 272 'remoting_unittests', |
| 271 'sync_unit_tests', | 273 'sync_unit_tests', |
| (...skipping 903 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1175 '%s%s LKGR (%s) exceeds lag threshold' % | 1177 '%s%s LKGR (%s) exceeds lag threshold' % |
| 1176 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) | 1178 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) |
| 1177 return 1 | 1179 return 1 |
| 1178 | 1180 |
| 1179 VerbosePrint('-' * 52) | 1181 VerbosePrint('-' * 52) |
| 1180 | 1182 |
| 1181 return 0 | 1183 return 0 |
| 1182 | 1184 |
| 1183 if __name__ == '__main__': | 1185 if __name__ == '__main__': |
| 1184 sys.exit(main()) | 1186 sys.exit(main()) |
| OLD | NEW |