| 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 27 matching lines...) Expand all Loading... |
| 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 # These tests are flakey on the chrome waterfall and need to be looked at. | 44 # These tests are flakey on the chrome waterfall and need to be looked at. |
| 45 # TODO(bsy): http://code.google.com/p/nativeclient/issues/detail?id=2509 | 45 # TODO(bsy): http://code.google.com/p/nativeclient/issues/detail?id=2509 |
| 46 tests_to_disable.append('run_pm_redir_stderr_bg_1000000_chrome_browser_test'
) | 46 tests_to_disable.append('run_pm_redir_stderr_bg_1000000_chrome_browser_test'
) |
| 47 tests_to_disable.append('run_pm_redir_stderr_fg_0_chrome_browser_test') | 47 tests_to_disable.append('run_pm_redir_stderr_fg_0_chrome_browser_test') |
| 48 # TODO(cdn): Reenable once we can pass |
| 49 # --disable-extensions-resource-whitelist to chrome for this test. |
| 50 # http://code.google.com/p/nativeclient/issues/detail?id=108131 |
| 51 tests_to_disable.append('run_ppapi_extension_mime_handler_browser_test') |
| 48 | 52 |
| 49 | 53 |
| 50 # TODO(ncbray) why did these tests flake? | 54 # TODO(ncbray) why did these tests flake? |
| 51 # http://code.google.com/p/nativeclient/issues/detail?id=2230 | 55 # http://code.google.com/p/nativeclient/issues/detail?id=2230 |
| 52 tests_to_disable.extend([ | 56 tests_to_disable.extend([ |
| 53 'run_pm_manifest_file_chrome_browser_test', | 57 'run_pm_manifest_file_chrome_browser_test', |
| 54 'run_srpc_basic_chrome_browser_test', | 58 'run_srpc_basic_chrome_browser_test', |
| 55 'run_srpc_hw_data_chrome_browser_test', | 59 'run_srpc_hw_data_chrome_browser_test', |
| 56 'run_srpc_hw_chrome_browser_test', | 60 'run_srpc_hw_chrome_browser_test', |
| 57 'run_srpc_manifest_file_chrome_browser_test', | 61 'run_srpc_manifest_file_chrome_browser_test', |
| (...skipping 27 matching lines...) Expand all Loading... |
| 85 '--', | 89 '--', |
| 86 nacl_integration_script, | 90 nacl_integration_script, |
| 87 '--disable_tests=%s' % ','.join(tests_to_disable)] + args | 91 '--disable_tests=%s' % ','.join(tests_to_disable)] + args |
| 88 sys.stdout.write('Running %s\n' % ' '.join(cmd)) | 92 sys.stdout.write('Running %s\n' % ' '.join(cmd)) |
| 89 sys.stdout.flush() | 93 sys.stdout.flush() |
| 90 return subprocess.call(cmd) | 94 return subprocess.call(cmd) |
| 91 | 95 |
| 92 | 96 |
| 93 if __name__ == '__main__': | 97 if __name__ == '__main__': |
| 94 sys.exit(Main(sys.argv[1:])) | 98 sys.exit(Main(sys.argv[1:])) |
| OLD | NEW |