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

Side by Side Diff: tests/masters_recipes_test.py

Issue 1938733002: Rename chromium.mac iOS bots (Closed) Base URL: svn://svn.chromium.org/chrome/trunk/tools/build
Patch Set: Created 4 years, 7 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
« no previous file with comments | « scripts/slave/gatekeeper.json ('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 2014 The Chromium Authors. All rights reserved. 2 # Copyright 2014 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 import argparse 6 import argparse
7 import json 7 import json
8 import os 8 import os
9 import subprocess 9 import subprocess
10 import sys 10 import sys
(...skipping 38 matching lines...) Expand 10 before | Expand all | Expand 10 after
49 'Android Debug (Nexus 6)', 49 'Android Debug (Nexus 6)',
50 'GPU Linux Builder (dbg)', 50 'GPU Linux Builder (dbg)',
51 'GPU Mac Builder (dbg)', 51 'GPU Mac Builder (dbg)',
52 'GPU Win Builder (dbg)', 52 'GPU Win Builder (dbg)',
53 'Linux Debug (NVIDIA)', 53 'Linux Debug (NVIDIA)',
54 'Mac 10.10 Debug (Intel)', 54 'Mac 10.10 Debug (Intel)',
55 'Mac 10.10 Retina Debug (AMD)', 55 'Mac 10.10 Retina Debug (AMD)',
56 'Win7 Debug (NVIDIA)', 56 'Win7 Debug (NVIDIA)',
57 ], 57 ],
58 'master.chromium.mac': [ 58 'master.chromium.mac': [
59 'ios-device',
60 'ios-device-gn',
61 'ios-simulator',
62 'ios-simulator-gn',
59 'Mac10.11 Tests', 63 'Mac10.11 Tests',
60 'iOS_Device',
61 'iOS_Device_GN',
62 'iOS_Device_(ninja)',
63 'iOS_Simulator_GN_(dbg)',
64 'iOS_Simulator_(dbg)',
65 ], 64 ],
66 'master.chromium.memory': [ 65 'master.chromium.memory': [
67 'Linux ASan Tests (sandboxed)', 66 'Linux ASan Tests (sandboxed)',
68 ], 67 ],
69 'master.chromium.win': [ 68 'master.chromium.win': [
70 'Win7 (32) Tests', 69 'Win7 (32) Tests',
71 'Win x64 Builder (dbg)', 70 'Win x64 Builder (dbg)',
72 ], 71 ],
73 } 72 }
74 73
(...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after
234 exit_code = 1 233 exit_code = 1
235 print 'Unused suppressions:' 234 print 'Unused suppressions:'
236 print '\n'.join(sorted( 235 print '\n'.join(sorted(
237 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) 236 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions))
238 237
239 return exit_code 238 return exit_code
240 239
241 240
242 if __name__ == '__main__': 241 if __name__ == '__main__':
243 sys.exit(main(sys.argv[1:])) 242 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « scripts/slave/gatekeeper.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698