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 13 matching lines...) Loading... | |
24 | 24 |
25 tests_to_disable = [] | 25 tests_to_disable = [] |
26 | 26 |
27 # In general, you should disable tests inside this conditional. This turns | 27 # In general, you should disable tests inside this conditional. This turns |
28 # them off on the main Chrome waterfall, but not on NaCl's integration bots. | 28 # them off on the main Chrome waterfall, but not on NaCl's integration bots. |
29 # This makes it easier to see when things have been fixed NaCl side. | 29 # This makes it easier to see when things have been fixed NaCl side. |
30 if not is_integration_bot: | 30 if not is_integration_bot: |
31 # TODO(ncbray): Reenable when this issue is resolved. | 31 # TODO(ncbray): Reenable when this issue is resolved. |
32 # http://code.google.com/p/nativeclient/issues/detail?id=2091 | 32 # http://code.google.com/p/nativeclient/issues/detail?id=2091 |
33 tests_to_disable.append('run_ppapi_bad_browser_test') | 33 tests_to_disable.append('run_ppapi_bad_browser_test') |
34 # TODO(wez): Reenable when he duplicate copy of the test has been removed. | |
35 # http://code.google.com/p/chromium/issues/detail?id=108379 | |
36 tests_to_disable.append('run_earth_c') | |
dmichael (off chromium)
2011/12/22 20:14:57
Looking at native_client/tests/earth/nacl.scons, I
| |
37 tests_to_disable.append('run_earth_cc') | |
34 # This thread safety stress test is flaky on at least Windows. | 38 # This thread safety stress test is flaky on at least Windows. |
35 # See http://code.google.com/p/nativeclient/issues/detail?id=2124 | 39 # See http://code.google.com/p/nativeclient/issues/detail?id=2124 |
36 # TODO(mseaborn): Reenable when this issue is resolved. | 40 # TODO(mseaborn): Reenable when this issue is resolved. |
37 tests_to_disable.append('run_ppapi_ppb_var_browser_test') | 41 tests_to_disable.append('run_ppapi_ppb_var_browser_test') |
38 # The behavior of the URLRequest changed slightly and this test needs to be | 42 # 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 | 43 # updated. http://code.google.com/p/chromium/issues/detail?id=94352 |
40 tests_to_disable.append('run_ppapi_ppb_url_request_info_browser_test') | 44 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. | 45 # This test failed and caused the build's gatekeep to close the tree. |
42 # http://code.google.com/p/chromium/issues/detail?id=96434 | 46 # http://code.google.com/p/chromium/issues/detail?id=96434 |
43 tests_to_disable.append('run_ppapi_example_post_message_test') | 47 tests_to_disable.append('run_ppapi_example_post_message_test') |
(...skipping 47 matching lines...) Loading... | |
91 '--', | 95 '--', |
92 nacl_integration_script, | 96 nacl_integration_script, |
93 '--disable_tests=%s' % ','.join(tests_to_disable)] + args | 97 '--disable_tests=%s' % ','.join(tests_to_disable)] + args |
94 sys.stdout.write('Running %s\n' % ' '.join(cmd)) | 98 sys.stdout.write('Running %s\n' % ' '.join(cmd)) |
95 sys.stdout.flush() | 99 sys.stdout.flush() |
96 return subprocess.call(cmd) | 100 return subprocess.call(cmd) |
97 | 101 |
98 | 102 |
99 if __name__ == '__main__': | 103 if __name__ == '__main__': |
100 sys.exit(Main(sys.argv[1:])) | 104 sys.exit(Main(sys.argv[1:])) |
OLD | NEW |