Chromium Code Reviews| 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', |
| 259 'sql_unittests', | 261 'sql_unittests', |
|
jln (very slow on Chromium)
2014/05/08 00:39:13
Hmmm, sandbox_linux_unittests is somehow missing h
hamaji
2014/05/08 01:42:56
Wow :( Done.
| |
| 260 'sync_unit_tests', | 262 'sync_unit_tests', |
| 261 'ui_unittests', | 263 'ui_unittests', |
| 262 'unit_tests', | 264 'unit_tests', |
| 263 'url_unittests', | 265 'url_unittests', |
| 264 'webkit_compositor_bindings_unittests', | 266 'webkit_compositor_bindings_unittests', |
| 265 ], | 267 ], |
| 266 'Android Builder (dbg)': [ | 268 'Android Builder (dbg)': [ |
| 267 'slave_steps', | 269 'slave_steps', |
| 268 ], | 270 ], |
| 269 'Android Tests (dbg)': [ | 271 'Android Tests (dbg)': [ |
| (...skipping 1007 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
| 1277 '%s%s LKGR (%s) exceeds lag threshold' % | 1279 '%s%s LKGR (%s) exceeds lag threshold' % |
| 1278 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) | 1280 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) |
| 1279 return 1 | 1281 return 1 |
| 1280 | 1282 |
| 1281 VerbosePrint('-' * 52) | 1283 VerbosePrint('-' * 52) |
| 1282 | 1284 |
| 1283 return 0 | 1285 return 0 |
| 1284 | 1286 |
| 1285 if __name__ == '__main__': | 1287 if __name__ == '__main__': |
| 1286 sys.exit(main()) | 1288 sys.exit(main()) |
| OLD | NEW |