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

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 63 matching lines...) Expand 10 before | Expand all | Expand 10 after
74 # LKGR_STEPS controls which steps must pass for a revision to be marked 74 # LKGR_STEPS controls which steps must pass for a revision to be marked
75 # as LKGR. 75 # as LKGR.
76 #------------------------------------------------------------------------------- 76 #-------------------------------------------------------------------------------
77 77
78 LKGR_STEPS = { 78 LKGR_STEPS = {
79 'chromium': { 79 'chromium': {
80 'Win Builder (dbg)': [ 80 'Win Builder (dbg)': [
81 'compile', 81 'compile',
82 ], 82 ],
83 'Win7 Tests (dbg)(1)': [ 83 'Win7 Tests (dbg)(1)': [
84 'check_deps',
85 'base_unittests', 84 'base_unittests',
86 'cacheinvalidation_unittests', 85 'cacheinvalidation_unittests',
86 'check_deps',
87 'content_unittests', 87 'content_unittests',
88 'courgette_unittests', 88 'courgette_unittests',
89 'crypto_unittests',
89 'googleurl_unittests', 90 'googleurl_unittests',
91 'installer_util_unittests',
92 'ipc_tests',
90 'jingle_unittests', 93 'jingle_unittests',
91 'media_unittests', 94 'media_unittests',
92 'printing_unittests', 95 'printing_unittests',
93 'remoting_unittests', 96 'remoting_unittests',
94 'ipc_tests',
95 'sql_unittests', 97 'sql_unittests',
96 'sync_unit_tests', 98 'sync_unit_tests',
99 'ui_unittests',
97 'unit_tests', 100 'unit_tests',
98 'installer_util_unittests',
99 'gfx_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',
110 ], 110 ],
(...skipping 24 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 'base_unittests',
163 'cacheinvalidation_unittests',
162 'content_unittests', 164 'content_unittests',
165 'googleurl_unittests',
166 'interactive_ui_tests',
163 'ipc_tests', 167 'ipc_tests',
164 'sync_unit_tests', 168 'jingle_unittests',
165 'unit_tests',
166 'sql_unittests',
167 'interactive_ui_tests',
168 'base_unittests',
169 'googleurl_unittests',
170 'media_unittests', 169 'media_unittests',
170 'nacl_integration',
171 'printing_unittests', 171 'printing_unittests',
172 'remoting_unittests', 172 'remoting_unittests',
173 'gfx_unittests', 173 'sql_unittests',
174 'nacl_integration', 174 'sync_unit_tests',
175 'cacheinvalidation_unittests', 175 'ui_unittests',
176 'jingle_unittests', 176 'unit_tests',
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
184 } 184 }
185 185
186 #------------------------------------------------------------------------------- 186 #-------------------------------------------------------------------------------
(...skipping 278 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
« no previous file with comments | « masters/master.chromium.linux/master_linux_cfg.py ('k') | masters/master.chromium.memory.fyi/master.cfg » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698