| OLD | NEW |
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2012 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2012 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 """Generate and process code coverage. | 6 """Generate and process code coverage. |
| 7 | 7 |
| 8 TODO(jrg): rename this from coverage_posix.py to coverage_all.py! | 8 TODO(jrg): rename this from coverage_posix.py to coverage_all.py! |
| 9 | 9 |
| 10 Written for and tested on Mac, Linux, and Windows. To use this script | 10 Written for and tested on Mac, Linux, and Windows. To use this script |
| (...skipping 314 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 325 'AutofillTest.*', | 325 'AutofillTest.*', |
| 326 # 'src/chrome/browser/autocomplete' | 326 # 'src/chrome/browser/autocomplete' |
| 327 'AutocompleteBrowserTest.*', | 327 'AutocompleteBrowserTest.*', |
| 328 # 'src/chrome/browser/captive_portal' | 328 # 'src/chrome/browser/captive_portal' |
| 329 'CaptivePortalBrowserTest.*', | 329 'CaptivePortalBrowserTest.*', |
| 330 # 'src/chrome/browser/geolocation' | 330 # 'src/chrome/browser/geolocation' |
| 331 'GeolocationAccessTokenStoreTest.*', | 331 'GeolocationAccessTokenStoreTest.*', |
| 332 'GeolocationBrowserTest.*', | 332 'GeolocationBrowserTest.*', |
| 333 # 'src/chrome/browser/nacl_host' | 333 # 'src/chrome/browser/nacl_host' |
| 334 'NaClGdbTest.*', | 334 'NaClGdbTest.*', |
| 335 # 'src/chrome/browser/debugger' | 335 # 'src/chrome/browser/devtools' |
| 336 'DevToolsSanityTest.*', | 336 'DevToolsSanityTest.*', |
| 337 'DevToolsExtensionTest.*', | 337 'DevToolsExtensionTest.*', |
| 338 'DevToolsExperimentalExtensionTest.*', | 338 'DevToolsExperimentalExtensionTest.*', |
| 339 'WorkerDevToolsSanityTest.*', | 339 'WorkerDevToolsSanityTest.*', |
| 340 # 'src/chrome/browser/first_run' | 340 # 'src/chrome/browser/first_run' |
| 341 'FirstRunBrowserTest.*', | 341 'FirstRunBrowserTest.*', |
| 342 # 'src/chrome/browser/importer' | 342 # 'src/chrome/browser/importer' |
| 343 'ToolbarImporterUtilsTest.*', | 343 'ToolbarImporterUtilsTest.*', |
| 344 # 'src/chrome/browser/page_cycler' | 344 # 'src/chrome/browser/page_cycler' |
| 345 'PageCyclerBrowserTest.*', | 345 'PageCyclerBrowserTest.*', |
| (...skipping 914 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... |
| 1260 if options.trim: | 1260 if options.trim: |
| 1261 coverage.TrimTests() | 1261 coverage.TrimTests() |
| 1262 coverage.RunTests() | 1262 coverage.RunTests() |
| 1263 if options.genhtml: | 1263 if options.genhtml: |
| 1264 coverage.GenerateHtml() | 1264 coverage.GenerateHtml() |
| 1265 return 0 | 1265 return 0 |
| 1266 | 1266 |
| 1267 | 1267 |
| 1268 if __name__ == '__main__': | 1268 if __name__ == '__main__': |
| 1269 sys.exit(main()) | 1269 sys.exit(main()) |
| OLD | NEW |