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 125 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
136 ], | 136 ], |
137 'Win7 Tests (dbg)(4)': [ | 137 'Win7 Tests (dbg)(4)': [ |
138 'browser_tests', | 138 'browser_tests', |
139 ], | 139 ], |
140 'Win7 Tests (dbg)(5)': [ | 140 'Win7 Tests (dbg)(5)': [ |
141 'browser_tests', | 141 'browser_tests', |
142 ], | 142 ], |
143 'Win7 Tests (dbg)(6)': [ | 143 'Win7 Tests (dbg)(6)': [ |
144 'browser_tests', | 144 'browser_tests', |
145 ], | 145 ], |
146 'Chrome Frame Tests (ie8)': [ | |
147 'chrome_frame_tests', | |
148 'chrome_frame_unittests', | |
149 ], | |
150 }, # chromium.win | 146 }, # chromium.win |
151 'chromium.mac': { | 147 'chromium.mac': { |
152 'Mac Builder (dbg)': [ | 148 'Mac Builder (dbg)': [ |
153 'compile', | 149 'compile', |
154 ], | 150 ], |
155 'Mac 10.6 Tests (dbg)(1)': [ | 151 'Mac 10.6 Tests (dbg)(1)': [ |
156 'browser_tests', | 152 'browser_tests', |
157 'cc_unittests', | 153 'cc_unittests', |
158 'chromedriver2_unittests', | 154 'chromedriver2_unittests', |
159 'jingle_unittests', | 155 'jingle_unittests', |
(...skipping 1006 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
1166 '%s%s LKGR (%s) exceeds lag threshold' % | 1162 '%s%s LKGR (%s) exceeds lag threshold' % |
1167 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) | 1163 (subject_base, lkgr_type, lkgr), '\n'.join(RUN_LOG)) |
1168 return 1 | 1164 return 1 |
1169 | 1165 |
1170 VerbosePrint('-' * 52) | 1166 VerbosePrint('-' * 52) |
1171 | 1167 |
1172 return 0 | 1168 return 0 |
1173 | 1169 |
1174 if __name__ == '__main__': | 1170 if __name__ == '__main__': |
1175 sys.exit(main()) | 1171 sys.exit(main()) |
OLD | NEW |