| OLD | NEW |
| 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 Loading... |
| 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 Loading... |
| 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:])) |
| OLD | NEW |