Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(310)

Side by Side Diff: masters/master.chromium.lkgr/lkgr_finder.py

Issue 10641005: Use ui_unittests instead of gfx_unittests. (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build/
Patch Set: Created 8 years, 6 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch | Annotate | Revision Log
OLDNEW
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 78 matching lines...) Expand 10 before | Expand all | Expand 10 after
89 'googleurl_unittests', 89 'googleurl_unittests',
90 'jingle_unittests', 90 'jingle_unittests',
91 'media_unittests', 91 'media_unittests',
92 'printing_unittests', 92 'printing_unittests',
93 'remoting_unittests', 93 'remoting_unittests',
94 'ipc_tests', 94 'ipc_tests',
95 'sql_unittests', 95 'sql_unittests',
96 'sync_unit_tests', 96 'sync_unit_tests',
97 'unit_tests', 97 'unit_tests',
98 'installer_util_unittests', 98 'installer_util_unittests',
99 'gfx_unittests', 99 'ui_unittests',
M-A Ruel 2012/06/21 18:57:24 please sort the list
100 'crypto_unittests', 100 'crypto_unittests',
101 ], 101 ],
102 'Win7 Tests (dbg)(2)': [ 102 'Win7 Tests (dbg)(2)': [
103 'net_unittests', 'browser_tests', 103 'net_unittests', 'browser_tests',
104 ], 104 ],
105 'Win7 Tests (dbg)(3)': [ 105 'Win7 Tests (dbg)(3)': [
106 'browser_tests', 106 'browser_tests',
107 ], 107 ],
108 'Win7 Tests (dbg)(4)': [ 108 'Win7 Tests (dbg)(4)': [
109 'browser_tests', 109 'browser_tests',
(...skipping 25 matching lines...) Expand all
135 'check_deps', 135 'check_deps',
136 'media_unittests', 136 'media_unittests',
137 'net_unittests', 137 'net_unittests',
138 ], 138 ],
139 'Mac 10.6 Tests (dbg)(3)': [ 139 'Mac 10.6 Tests (dbg)(3)': [
140 'base_unittests', 'browser_tests', 'interactive_ui_tests', 140 'base_unittests', 'browser_tests', 'interactive_ui_tests',
141 ], 141 ],
142 'Mac 10.6 Tests (dbg)(4)': [ 142 'Mac 10.6 Tests (dbg)(4)': [
143 'browser_tests', 143 'browser_tests',
144 'content_unittests', 144 'content_unittests',
145 'gfx_unittests',
146 'ipc_tests', 145 'ipc_tests',
147 'sql_unittests', 146 'sql_unittests',
148 'sync_unit_tests', 147 'sync_unit_tests',
148 'ui_unittests',
149 'unit_tests', 149 'unit_tests',
150 ], 150 ],
151 'Linux Builder (dbg)': [ 151 'Linux Builder (dbg)': [
152 'compile', 152 'compile',
153 ], 153 ],
154 'Linux Builder x64': [ 154 'Linux Builder x64': [
155 'check_deps', 155 'check_deps',
156 ], 156 ],
157 'Linux Tests (dbg)(1)': [ 157 'Linux Tests (dbg)(1)': [
158 'browser_tests', 158 'browser_tests',
159 'net_unittests', 159 'net_unittests',
160 ], 160 ],
161 'Linux Tests (dbg)(2)': [ 161 'Linux Tests (dbg)(2)': [
162 'content_unittests', 162 'content_unittests',
163 'ipc_tests', 163 'ipc_tests',
164 'sync_unit_tests', 164 'sync_unit_tests',
165 'unit_tests', 165 'unit_tests',
166 'sql_unittests', 166 'sql_unittests',
167 'interactive_ui_tests', 167 'interactive_ui_tests',
168 'base_unittests', 168 'base_unittests',
169 'googleurl_unittests', 169 'googleurl_unittests',
170 'media_unittests', 170 'media_unittests',
171 'printing_unittests', 171 'printing_unittests',
172 'remoting_unittests', 172 'remoting_unittests',
173 'gfx_unittests', 173 'ui_unittests',
M-A Ruel 2012/06/21 18:57:24 sort here too
174 'nacl_integration', 174 'nacl_integration',
175 'cacheinvalidation_unittests', 175 'cacheinvalidation_unittests',
176 'jingle_unittests', 176 'jingle_unittests',
177 ], 177 ],
178 }, # chromium 178 }, # chromium
179 'chromium.chrome': { 179 'chromium.chrome': {
180 'Google Chrome Linux x64': [ # cycle time is ~14 mins as of 5/5/2012 180 'Google Chrome Linux x64': [ # cycle time is ~14 mins as of 5/5/2012
181 'compile', 181 'compile',
182 ], 182 ],
183 }, # chromium.chrome 183 }, # chromium.chrome
(...skipping 281 matching lines...) Expand 10 before | Expand all | Expand 10 after
465 for master in options.notify: 465 for master in options.notify:
466 NotifyMaster(master, candidate, options.dry) 466 NotifyMaster(master, candidate, options.dry)
467 else: 467 else:
468 VerbosePrint('No newer LKGR found than current %s' % lkgr) 468 VerbosePrint('No newer LKGR found than current %s' % lkgr)
469 VerbosePrint('-' * 80) 469 VerbosePrint('-' * 80)
470 470
471 return 0 471 return 0
472 472
473 if __name__ == '__main__': 473 if __name__ == '__main__':
474 sys.exit(main()) 474 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698