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

Side by Side Diff: tests/masters_recipes_test.py

Issue 2156443003: tryserver.chromium.win: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: presubmit Created 4 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 | « scripts/slave/recipes/chromium_trybot.expected/use_v8_patch_on_chromium_trybot.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 21 matching lines...) Expand all
32 'master.tryserver.chromium.mac', 32 'master.tryserver.chromium.mac',
33 'master.tryserver.chromium.win', 33 'master.tryserver.chromium.win',
34 ] 34 ]
35 35
36 36
37 SUPPRESSIONS = { 37 SUPPRESSIONS = {
38 'master.chromium.chrome': [ 38 'master.chromium.chrome': [
39 'Google Chrome ChromeOS', 39 'Google Chrome ChromeOS',
40 'Google Chrome Linux x64', 40 'Google Chrome Linux x64',
41 'Google Chrome Mac', 41 'Google Chrome Mac',
42 'Google Chrome Win',
43 ], 42 ],
44 'master.chromium.chromiumos': [ 43 'master.chromium.chromiumos': [
45 'Linux ChromiumOS Full', 44 'Linux ChromiumOS Full',
46 ], 45 ],
47 'master.chromium.gpu': [ 46 'master.chromium.gpu': [
48 'GPU Linux Builder (dbg)', 47 'GPU Linux Builder (dbg)',
49 'GPU Mac Builder (dbg)', 48 'GPU Mac Builder (dbg)',
50 'GPU Win Builder (dbg)', 49 'GPU Win Builder (dbg)',
51 'Linux Debug (NVIDIA)', 50 'Linux Debug (NVIDIA)',
52 'Mac 10.10 Debug (Intel)', 51 'Mac 10.10 Debug (Intel)',
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
231 exit_code = 1 230 exit_code = 1
232 print 'Unused suppressions:' 231 print 'Unused suppressions:'
233 print '\n'.join(sorted( 232 print '\n'.join(sorted(
234 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) 233 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions))
235 234
236 return exit_code 235 return exit_code
237 236
238 237
239 if __name__ == '__main__': 238 if __name__ == '__main__':
240 sys.exit(main(sys.argv[1:])) 239 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « scripts/slave/recipes/chromium_trybot.expected/use_v8_patch_on_chromium_trybot.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698