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

Side by Side Diff: tests/masters_recipes_test.py

Issue 1625713002: Infra side changes to add a 32 bit Windows 7 bot. (Closed) Base URL: https://chromium.googlesource.com/chromium/tools/build@master
Patch Set: add suppression for new bot Created 4 years, 11 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.expected/full_chromium_win_Win_Builder.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 62 matching lines...) Expand 10 before | Expand all | Expand 10 after
73 'Mac10.9 Tests', 73 'Mac10.9 Tests',
74 'Mac10.11 Tests', 74 'Mac10.11 Tests',
75 'iOS_Device', 75 'iOS_Device',
76 'iOS_Device_(ninja)', 76 'iOS_Device_(ninja)',
77 'iOS_Simulator_(dbg)', 77 'iOS_Simulator_(dbg)',
78 ], 78 ],
79 'master.chromium.memory': [ 79 'master.chromium.memory': [
80 'Linux ASan Tests (sandboxed)', 80 'Linux ASan Tests (sandboxed)',
81 ], 81 ],
82 'master.chromium.win': [ 82 'master.chromium.win': [
83 'Win7 (32) Tests',
83 'Win x64 Builder (dbg)', 84 'Win x64 Builder (dbg)',
84 ], 85 ],
85 } 86 }
86 87
87 88
88 def getBuilders(recipe_name): 89 def getBuilders(recipe_name):
89 """Asks the given recipe to dump its BUILDERS dictionary. 90 """Asks the given recipe to dump its BUILDERS dictionary.
90 91
91 This must be implemented by the recipe in question. 92 This must be implemented by the recipe in question.
92 """ 93 """
(...skipping 144 matching lines...) Expand 10 before | Expand all | Expand 10 after
237 exit_code = 1 238 exit_code = 1
238 print 'Unused suppressions:' 239 print 'Unused suppressions:'
239 print '\n'.join(sorted( 240 print '\n'.join(sorted(
240 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) 241 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions))
241 242
242 return exit_code 243 return exit_code
243 244
244 245
245 if __name__ == '__main__': 246 if __name__ == '__main__':
246 sys.exit(main(sys.argv[1:])) 247 sys.exit(main(sys.argv[1:]))
OLDNEW
« no previous file with comments | « scripts/slave/recipes/chromium.expected/full_chromium_win_Win_Builder.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698