| 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 38 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 49 'Android Debug (Nexus 6)', | 49 'Android Debug (Nexus 6)', |
| 50 'GPU Linux Builder (dbg)', | 50 'GPU Linux Builder (dbg)', |
| 51 'GPU Mac Builder (dbg)', | 51 'GPU Mac Builder (dbg)', |
| 52 'GPU Win Builder (dbg)', | 52 'GPU Win Builder (dbg)', |
| 53 'Linux Debug (NVIDIA)', | 53 'Linux Debug (NVIDIA)', |
| 54 'Mac 10.10 Debug (Intel)', | 54 'Mac 10.10 Debug (Intel)', |
| 55 'Mac 10.10 Retina Debug (AMD)', | 55 'Mac 10.10 Retina Debug (AMD)', |
| 56 'Win7 Debug (NVIDIA)', | 56 'Win7 Debug (NVIDIA)', |
| 57 ], | 57 ], |
| 58 'master.chromium.mac': [ | 58 'master.chromium.mac': [ |
| 59 'ios-device', |
| 60 'ios-device-gn', |
| 61 'ios-simulator', |
| 62 'ios-simulator-gn', |
| 59 'Mac10.11 Tests', | 63 'Mac10.11 Tests', |
| 60 'iOS_Device', | |
| 61 'iOS_Device_GN', | |
| 62 'iOS_Device_(ninja)', | |
| 63 'iOS_Simulator_GN_(dbg)', | |
| 64 'iOS_Simulator_(dbg)', | |
| 65 ], | 64 ], |
| 66 'master.chromium.memory': [ | 65 'master.chromium.memory': [ |
| 67 'Linux ASan Tests (sandboxed)', | 66 'Linux ASan Tests (sandboxed)', |
| 68 ], | 67 ], |
| 69 'master.chromium.win': [ | 68 'master.chromium.win': [ |
| 70 'Win7 (32) Tests', | 69 'Win7 (32) Tests', |
| 71 'Win x64 Builder (dbg)', | 70 'Win x64 Builder (dbg)', |
| 72 ], | 71 ], |
| 73 } | 72 } |
| 74 | 73 |
| (...skipping 159 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 234 exit_code = 1 | 233 exit_code = 1 |
| 235 print 'Unused suppressions:' | 234 print 'Unused suppressions:' |
| 236 print '\n'.join(sorted( | 235 print '\n'.join(sorted( |
| 237 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) | 236 '\t%s:%s' % (b[0], b[1]) for b in unused_suppressions)) |
| 238 | 237 |
| 239 return exit_code | 238 return exit_code |
| 240 | 239 |
| 241 | 240 |
| 242 if __name__ == '__main__': | 241 if __name__ == '__main__': |
| 243 sys.exit(main(sys.argv[1:])) | 242 sys.exit(main(sys.argv[1:])) |
| OLD | NEW |