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

Side by Side Diff: tests/masters_recipes_test.py

Issue 2154213004: Revert of tryserver.chromium.win: convert chromium_trybot builders to remote_run (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build.git@master
Patch Set: 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
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',
42 ], 43 ],
43 'master.chromium.chromiumos': [ 44 'master.chromium.chromiumos': [
44 'Linux ChromiumOS Full', 45 'Linux ChromiumOS Full',
45 ], 46 ],
46 'master.chromium.gpu': [ 47 'master.chromium.gpu': [
47 'GPU Linux Builder (dbg)', 48 'GPU Linux Builder (dbg)',
48 'GPU Mac Builder (dbg)', 49 'GPU Mac Builder (dbg)',
49 'GPU Win Builder (dbg)', 50 'GPU Win Builder (dbg)',
50 'Linux Debug (NVIDIA)', 51 'Linux Debug (NVIDIA)',
51 'Mac 10.10 Debug (Intel)', 52 'Mac 10.10 Debug (Intel)',
(...skipping 178 matching lines...) Expand 10 before | Expand all | Expand 10 after
230 exit_code = 1 231 exit_code = 1
231 print 'Unused suppressions:' 232 print 'Unused suppressions:'
232 print '\n'.join(sorted( 233 print '\n'.join(sorted(
233 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) 234 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions))
234 235
235 return exit_code 236 return exit_code
236 237
237 238
238 if __name__ == '__main__': 239 if __name__ == '__main__':
239 sys.exit(main(sys.argv[1:])) 240 sys.exit(main(sys.argv[1:]))
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698