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

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

Issue 1199813007: Convert base_unittests to Swarming everywhere. (Closed) Base URL: https://chromium.googlesource.com/a/chromium/src.git@6_ash_unittests
Patch Set: Blacklist Linux GN (dbg) Created 5 years, 5 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
« no previous file with comments | « testing/buildbot/chromium.memory.fyi.json ('k') | testing/buildbot/tryserver.chromium.mac.json » ('j') | 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 21 matching lines...) Expand all
32 'non_filter_builders', 'non_filter_tests_builders', 32 'non_filter_builders', 'non_filter_tests_builders',
33 33
34 # These are not supported on Swarming yet. 34 # These are not supported on Swarming yet.
35 # http://crbug.com/472205 35 # http://crbug.com/472205
36 'Chromium Mac 10.10', 36 'Chromium Mac 10.10',
37 # http://crbug.com/441429 37 # http://crbug.com/441429
38 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)', 38 'Linux Trusty (32)', 'Linux Trusty (dbg)(32)',
39 39
40 # http://crbug.com/480053 40 # http://crbug.com/480053
41 'Linux GN', 41 'Linux GN',
42 'Linux GN (dbg)',
42 'linux_chromium_gn_rel', 43 'linux_chromium_gn_rel',
43 44
44 # Unmaintained builders on chromium.fyi 45 # Unmaintained builders on chromium.fyi
45 'ClangToTMac', 46 'ClangToTMac',
46 'ClangToTMacASan', 47 'ClangToTMacASan',
47 48
48 # Clang builders want to build everything, the current hack is to use 49 # Clang builders want to build everything, the current hack is to use
49 # add_tests_as_compile_targets=False which interfere with isolated testing. 50 # add_tests_as_compile_targets=False which interfere with isolated testing.
50 # Blocked by http://crbug.com/503241. 51 # Blocked by http://crbug.com/503241.
51 'ClangToTLinux tester', 52 'ClangToTLinux tester',
(...skipping 234 matching lines...) Expand 10 before | Expand all | Expand 10 after
286 if args.mode == 'remaining': 287 if args.mode == 'remaining':
287 print_remaining(args.test_name, tests_location) 288 print_remaining(args.test_name, tests_location)
288 return result 289 return result
289 except Error as e: 290 except Error as e:
290 sys.stderr.write('%s\n' % e) 291 sys.stderr.write('%s\n' % e)
291 return 1 292 return 1
292 293
293 294
294 if __name__ == "__main__": 295 if __name__ == "__main__":
295 sys.exit(main()) 296 sys.exit(main())
OLDNEW
« no previous file with comments | « testing/buildbot/chromium.memory.fyi.json ('k') | testing/buildbot/tryserver.chromium.mac.json » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698