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

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

Issue 2595793002: Run the webkit layout tests under swarming on linux_chromium_rel_ng. (Closed)
Patch Set: remove the webkit_layout_tests target and bump up the number of shards Created 3 years, 12 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
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 183 matching lines...) Expand 10 before | Expand all | Expand 10 after
194 'system_wrappers_unittests', 194 'system_wrappers_unittests',
195 'test_support_unittests', 195 'test_support_unittests',
196 'tools_unittests', 196 'tools_unittests',
197 'video_engine_tests', 197 'video_engine_tests',
198 'voice_engine_unittests', 198 'voice_engine_unittests',
199 'webrtc_nonparallel_tests', 199 'webrtc_nonparallel_tests',
200 'xmllite_xmpp_unittests', 200 'xmllite_xmpp_unittests',
201 201
202 # isolate is currently too slow for this target. 202 # isolate is currently too slow for this target.
203 # http://crbug.com/524758 203 # http://crbug.com/524758
204 'webkit_layout_tests', 204 'webkit_layout_tests_exparchive',
205 } 205 }
206 206
207 207
208 class Error(Exception): 208 class Error(Exception):
209 """Processing error.""" 209 """Processing error."""
210 210
211 211
212 def get_isolates(): 212 def get_isolates():
213 """Returns the list of all isolate files.""" 213 """Returns the list of all isolate files."""
214 214
(...skipping 264 matching lines...) Expand 10 before | Expand all | Expand 10 after
479 elif args.mode == 'remaining': 479 elif args.mode == 'remaining':
480 print_remaining(args.test_name, tests_location) 480 print_remaining(args.test_name, tests_location)
481 return result 481 return result
482 except Error as e: 482 except Error as e:
483 sys.stderr.write('%s\n' % e) 483 sys.stderr.write('%s\n' % e)
484 return 1 484 return 1
485 485
486 486
487 if __name__ == "__main__": 487 if __name__ == "__main__":
488 sys.exit(main()) 488 sys.exit(main())
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698