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

Side by Side Diff: testing/buildbot/manage.py

Issue 2452313003: Creating webkit_layout_tests target. (Closed)
Patch Set: Rebase onto master Created 4 years, 1 month 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
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | no next file » | no next file with comments »
Toggle Intra-line Diffs ('i') | Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
OLDNEW
1 #!/usr/bin/env python 1 #!/usr/bin/env python
2 # Copyright 2015 The Chromium Authors. All rights reserved. 2 # Copyright 2015 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 """Toolbox to manage all the json files in this directory. 6 """Toolbox to manage all the json files in this directory.
7 7
8 It can reformat them in their canonical format or ensures they are well 8 It can reformat them in their canonical format or ensures they are well
9 formatted. 9 formatted.
10 """ 10 """
(...skipping 179 matching lines...) Expand 10 before | Expand all | Expand 10 after
190 'rtc_pc_unittests', 190 'rtc_pc_unittests',
191 'rtc_stats_unittests', 191 'rtc_stats_unittests',
192 'rtc_unittests', 192 'rtc_unittests',
193 'system_wrappers_unittests', 193 'system_wrappers_unittests',
194 'test_support_unittests', 194 'test_support_unittests',
195 'tools_unittests', 195 'tools_unittests',
196 'video_engine_tests', 196 'video_engine_tests',
197 'voice_engine_unittests', 197 'voice_engine_unittests',
198 'webrtc_nonparallel_tests', 198 'webrtc_nonparallel_tests',
199 'xmllite_xmpp_unittests', 199 'xmllite_xmpp_unittests',
200
201 # isolate is currently too slow for this target.
202 # http://crbug.com/524758
203 'webkit_layout_tests',
200 } 204 }
201 205
202 206
203 class Error(Exception): 207 class Error(Exception):
204 """Processing error.""" 208 """Processing error."""
205 209
206 210
207 def get_isolates(): 211 def get_isolates():
208 """Returns the list of all isolate files.""" 212 """Returns the list of all isolate files."""
209 213
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
474 elif args.mode == 'remaining': 478 elif args.mode == 'remaining':
475 print_remaining(args.test_name, tests_location) 479 print_remaining(args.test_name, tests_location)
476 return result 480 return result
477 except Error as e: 481 except Error as e:
478 sys.stderr.write('%s\n' % e) 482 sys.stderr.write('%s\n' % e)
479 return 1 483 return 1
480 484
481 485
482 if __name__ == "__main__": 486 if __name__ == "__main__":
483 sys.exit(main()) 487 sys.exit(main())
OLDNEW
« no previous file with comments | « testing/buildbot/gn_isolate_map.pyl ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698