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 208 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
219 'content_unittests', | 219 'content_unittests', |
220 'crypto_unittests', | 220 'crypto_unittests', |
221 'dbus_unittests', | 221 'dbus_unittests', |
222 'device_unittests', | 222 'device_unittests', |
223 'gpu_unittests', | 223 'gpu_unittests', |
224 'interactive_ui_tests', | 224 'interactive_ui_tests', |
225 'ipc_tests', | 225 'ipc_tests', |
226 'jingle_unittests', | 226 'jingle_unittests', |
227 'media_unittests', | 227 'media_unittests', |
228 'nacl_integration', | 228 'nacl_integration', |
| 229 'nacl_loader_unittests', |
229 'ppapi_unittests', | 230 'ppapi_unittests', |
230 'printing_unittests', | 231 'printing_unittests', |
231 'remoting_unittests', | 232 'remoting_unittests', |
232 'sandbox_linux_unittests', | 233 'sandbox_linux_unittests', |
233 'sql_unittests', | 234 'sql_unittests', |
234 'sync_unit_tests', | 235 'sync_unit_tests', |
235 'ui_unittests', | 236 'ui_unittests', |
236 'unit_tests', | 237 'unit_tests', |
237 'url_unittests', | 238 'url_unittests', |
238 'webkit_compositor_bindings_unittests', | 239 'webkit_compositor_bindings_unittests', |
239 ], | 240 ], |
240 'Linux Tests (dbg)(1)': [ | 241 'Linux Tests (dbg)(1)': [ |
241 'browser_tests', | 242 'browser_tests', |
242 'net_unittests', | 243 'net_unittests', |
243 ], | 244 ], |
244 'Linux Tests (dbg)(2)': [ | 245 'Linux Tests (dbg)(2)': [ |
245 'base_unittests', | 246 'base_unittests', |
246 'cacheinvalidation_unittests', | 247 'cacheinvalidation_unittests', |
247 'cc_unittests', | 248 'cc_unittests', |
248 'chromedriver_unittests', | 249 'chromedriver_unittests', |
249 'components_unittests', | 250 'components_unittests', |
250 'content_unittests', | 251 'content_unittests', |
251 'interactive_ui_tests', | 252 'interactive_ui_tests', |
252 'ipc_tests', | 253 'ipc_tests', |
253 'jingle_unittests', | 254 'jingle_unittests', |
254 'media_unittests', | 255 'media_unittests', |
255 'nacl_integration', | 256 'nacl_integration', |
| 257 'nacl_loader_unittests', |
256 'ppapi_unittests', | 258 'ppapi_unittests', |
257 'printing_unittests', | 259 'printing_unittests', |
258 'remoting_unittests', | 260 'remoting_unittests', |
| 261 'sandbox_linux_unittests', |
259 'sql_unittests', | 262 'sql_unittests', |
260 'sync_unit_tests', | 263 'sync_unit_tests', |
261 'ui_unittests', | 264 'ui_unittests', |
262 'unit_tests', | 265 'unit_tests', |
263 'url_unittests', | 266 'url_unittests', |
264 'webkit_compositor_bindings_unittests', | 267 'webkit_compositor_bindings_unittests', |
265 ], | 268 ], |
266 'Android Builder (dbg)': [ | 269 'Android Builder (dbg)': [ |
267 'slave_steps', | 270 'slave_steps', |
268 ], | 271 ], |
(...skipping 1008 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1277 '%s%s LKGR (%s) exceeds lag threshold' % | 1280 '%s%s LKGR (%s) exceeds lag threshold' % |
1278 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) | 1281 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) |
1279 return 1 | 1282 return 1 |
1280 | 1283 |
1281 VerbosePrint('-' * 52) | 1284 VerbosePrint('-' * 52) |
1282 | 1285 |
1283 return 0 | 1286 return 0 |
1284 | 1287 |
1285 if __name__ == '__main__': | 1288 if __name__ == '__main__': |
1286 sys.exit(main()) | 1289 sys.exit(main()) |
OLD | NEW |