OLD | NEW |
---|---|
1 #!/usr/bin/python | 1 #!/usr/bin/python |
M-A Ruel
2011/08/08 16:16:53
#!/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 |
11 def Main(args): | 11 def Main(args): |
12 pwd = os.environ.get('PWD', '') | 12 pwd = os.environ.get('PWD', '') |
13 is_integration_bot = 'nacl-chrome' in pwd | 13 is_integration_bot = 'nacl-chrome' in pwd |
14 | 14 |
M-A Ruel
2011/08/08 16:16:53
one line only
Nico
2011/08/08 16:19:35
whoops :-)
| |
15 | |
16 if sys.platform == 'darwin' and 'Debug' in args: | |
Mark Seaborn
2011/08/08 16:25:36
This should really be inside an "if not is_integra
| |
17 # The nacl integration tests don't work with clang in debug mode. Disable | |
18 # them to get the waterfall green until this is resolved. | |
19 # http://crbug.com/91371 | |
20 sys.stdout.write('Skipping nacl_integration, see http://crbug.com/91371\n') | |
M-A Ruel
2011/08/08 16:16:53
stderr?
Nico
2011/08/08 16:19:35
The script writes to sys.stdout below in line 68/6
| |
21 sys.stdout.flush() | |
Mark Seaborn
2011/08/08 16:25:36
You don't need to flush if you're exiting straight
| |
22 return | |
23 | |
15 # On the main Chrome waterfall, we may need to control where the tests are | 24 # On the main Chrome waterfall, we may need to control where the tests are |
16 # run. | 25 # run. |
17 # If there is serious skew in the PPAPI interface that causes all of | 26 # If there is serious skew in the PPAPI interface that causes all of |
18 # the NaCl integration tests to fail, you can uncomment the | 27 # the NaCl integration tests to fail, you can uncomment the |
19 # following block. (Make sure you comment it out when the issues | 28 # following block. (Make sure you comment it out when the issues |
20 # are resolved.) *However*, it is much preferred to add tests to | 29 # are resolved.) *However*, it is much preferred to add tests to |
21 # the 'tests_to_disable' list below. | 30 # the 'tests_to_disable' list below. |
22 #if not is_integration_bot: | 31 #if not is_integration_bot: |
23 # return | 32 # return |
24 | 33 |
(...skipping 31 matching lines...) Expand 10 before | Expand all | Expand 10 after Loading... | |
56 cmd = [sys.executable, | 65 cmd = [sys.executable, |
57 nacl_integration_script, | 66 nacl_integration_script, |
58 '--disable_tests=%s' % ','.join(tests_to_disable)] + args | 67 '--disable_tests=%s' % ','.join(tests_to_disable)] + args |
59 sys.stdout.write('Running %s\n' % ' '.join(cmd)) | 68 sys.stdout.write('Running %s\n' % ' '.join(cmd)) |
60 sys.stdout.flush() | 69 sys.stdout.flush() |
61 return subprocess.call(cmd) | 70 return subprocess.call(cmd) |
62 | 71 |
63 | 72 |
64 if __name__ == '__main__': | 73 if __name__ == '__main__': |
65 sys.exit(Main(sys.argv[1:])) | 74 sys.exit(Main(sys.argv[1:])) |
OLD | NEW |