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

Side by Side Diff: tests/masters_recipes_test.py

Issue 2196953003: Remove GYP builders from chromium mac, win waterfalls. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: remove unused suppressions Created 4 years, 4 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 | « scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_win_win8_chromium_gyp_rel.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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after
47 'GPU Linux Builder (dbg)', 47 'GPU Linux Builder (dbg)',
48 'GPU Mac Builder (dbg)', 48 'GPU Mac Builder (dbg)',
49 'GPU Win Builder (dbg)', 49 'GPU Win Builder (dbg)',
50 'Linux Debug (NVIDIA)', 50 'Linux Debug (NVIDIA)',
51 'Mac 10.10 Debug (Intel)', 51 'Mac 10.10 Debug (Intel)',
52 'Mac 10.10 Retina Debug (AMD)', 52 'Mac 10.10 Retina Debug (AMD)',
53 'Win7 Debug (NVIDIA)', 53 'Win7 Debug (NVIDIA)',
54 ], 54 ],
55 'master.chromium.mac': [ 55 'master.chromium.mac': [
56 'ios-device', 56 'ios-device',
57 'ios-device-gn',
58 'ios-simulator', 57 'ios-simulator',
59 'ios-simulator-gn',
60 'Mac10.11 Tests', 58 'Mac10.11 Tests',
61 ], 59 ],
62 'master.chromium.memory': [ 60 'master.chromium.memory': [
63 'Linux ASan Tests (sandboxed)', 61 'Linux ASan Tests (sandboxed)',
64 ], 62 ],
65 'master.chromium.win': [ 63 'master.chromium.win': [
66 'Win7 (32) Tests', 64 'Win7 (32) Tests',
67 'Win x64 Builder (dbg)', 65 'Win x64 Builder (dbg)',
68 ], 66 ],
69 } 67 }
(...skipping 160 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 exit_code = 1 228 exit_code = 1
231 print 'Unused suppressions:' 229 print 'Unused suppressions:'
232 print '\n'.join(sorted( 230 print '\n'.join(sorted(
233 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) 231 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions))
234 232
235 return exit_code 233 return exit_code
236 234
237 235
238 if __name__ == '__main__': 236 if __name__ == '__main__':
239 sys.exit(main(sys.argv[1:])) 237 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « scripts/slave/recipes/chromium_trybot.expected/full_tryserver_chromium_win_win8_chromium_gyp_rel.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698