Chromium Code Reviews| OLD | NEW |
|---|---|
| 1 #!/usr/bin/env python | 1 #!/usr/bin/env python |
| 2 # Copyright (c) 2011 The Chromium Authors. All rights reserved. | 2 # Copyright (c) 2011 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 os | 6 import os |
| 7 import subprocess | 7 import subprocess |
| 8 import sys | 8 import sys |
| 9 | 9 |
| 10 | 10 |
| (...skipping 23 matching lines...) Expand all Loading... | |
| 34 # This thread safety stress test is flaky on at least Windows. | 34 # This thread safety stress test is flaky on at least Windows. |
| 35 # See http://code.google.com/p/nativeclient/issues/detail?id=2124 | 35 # See http://code.google.com/p/nativeclient/issues/detail?id=2124 |
| 36 # TODO(mseaborn): Reenable when this issue is resolved. | 36 # TODO(mseaborn): Reenable when this issue is resolved. |
| 37 tests_to_disable.append('run_ppapi_ppb_var_browser_test') | 37 tests_to_disable.append('run_ppapi_ppb_var_browser_test') |
| 38 # The behavior of the URLRequest changed slightly and this test needs to be | 38 # The behavior of the URLRequest changed slightly and this test needs to be |
| 39 # updated. http://code.google.com/p/chromium/issues/detail?id=94352 | 39 # updated. http://code.google.com/p/chromium/issues/detail?id=94352 |
| 40 tests_to_disable.append('run_ppapi_ppb_url_request_info_browser_test') | 40 tests_to_disable.append('run_ppapi_ppb_url_request_info_browser_test') |
| 41 # This test failed and caused the build's gatekeep to close the tree. | 41 # This test failed and caused the build's gatekeep to close the tree. |
| 42 # http://code.google.com/p/chromium/issues/detail?id=96434 | 42 # http://code.google.com/p/chromium/issues/detail?id=96434 |
| 43 tests_to_disable.append('run_ppapi_example_post_message_test') | 43 tests_to_disable.append('run_ppapi_example_post_message_test') |
| 44 # TODO(cdn): Reenable once we can pass | |
| 45 # --disable-extensions-resource-whitelist to chrome for this test. | |
| 46 # http://code.google.com/p/nativeclient/issues/detail?id=108131 | |
| 47 tests_to_disable.append('run_ppapi_extension_mime_handler_browser_test') | |
|
Aaron Boodman
2011/12/20 21:12:58
I have no idea about this. Did you talk to the nac
Cris Neckar
2011/12/20 22:00:06
Yeah, I should have noted this in my comment. I di
| |
| 44 | 48 |
| 45 # TODO(ncbray) why did these tests flake? | 49 # TODO(ncbray) why did these tests flake? |
| 46 # http://code.google.com/p/nativeclient/issues/detail?id=2230 | 50 # http://code.google.com/p/nativeclient/issues/detail?id=2230 |
| 47 tests_to_disable.extend([ | 51 tests_to_disable.extend([ |
| 48 'run_pm_manifest_file_chrome_browser_test', | 52 'run_pm_manifest_file_chrome_browser_test', |
| 49 'run_srpc_basic_chrome_browser_test', | 53 'run_srpc_basic_chrome_browser_test', |
| 50 'run_srpc_hw_data_chrome_browser_test', | 54 'run_srpc_hw_data_chrome_browser_test', |
| 51 'run_srpc_hw_chrome_browser_test', | 55 'run_srpc_hw_chrome_browser_test', |
| 52 'run_srpc_manifest_file_chrome_browser_test', | 56 'run_srpc_manifest_file_chrome_browser_test', |
| 53 'run_srpc_nameservice_chrome_browser_test', | 57 'run_srpc_nameservice_chrome_browser_test', |
| (...skipping 26 matching lines...) Expand all Loading... | |
| 80 '--', | 84 '--', |
| 81 nacl_integration_script, | 85 nacl_integration_script, |
| 82 '--disable_tests=%s' % ','.join(tests_to_disable)] + args | 86 '--disable_tests=%s' % ','.join(tests_to_disable)] + args |
| 83 sys.stdout.write('Running %s\n' % ' '.join(cmd)) | 87 sys.stdout.write('Running %s\n' % ' '.join(cmd)) |
| 84 sys.stdout.flush() | 88 sys.stdout.flush() |
| 85 return subprocess.call(cmd) | 89 return subprocess.call(cmd) |
| 86 | 90 |
| 87 | 91 |
| 88 if __name__ == '__main__': | 92 if __name__ == '__main__': |
| 89 sys.exit(Main(sys.argv[1:])) | 93 sys.exit(Main(sys.argv[1:])) |
| OLD | NEW |