| 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 36 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 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 Loading... |
| 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:])) |
| OLD | NEW |