Chromium Code Reviews| Index: chrome/test/nacl_test_injection/buildbot_nacl_integration.py |
| diff --git a/chrome/test/nacl_test_injection/buildbot_nacl_integration.py b/chrome/test/nacl_test_injection/buildbot_nacl_integration.py |
| index 1e572c6318c4e9d7b4e9a2252bc296e2aa0fa096..8f41d0db23f0441cdbc6f200ec46055d74f8219d 100755 |
| --- a/chrome/test/nacl_test_injection/buildbot_nacl_integration.py |
| +++ b/chrome/test/nacl_test_injection/buildbot_nacl_integration.py |
| @@ -12,6 +12,15 @@ def Main(args): |
| pwd = os.environ.get('PWD', '') |
| is_integration_bot = 'nacl-chrome' in pwd |
|
M-A Ruel
2011/08/08 16:16:53
one line only
Nico
2011/08/08 16:19:35
whoops :-)
|
| + |
| + 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
|
| + # The nacl integration tests don't work with clang in debug mode. Disable |
| + # them to get the waterfall green until this is resolved. |
| + # http://crbug.com/91371 |
| + 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
|
| + sys.stdout.flush() |
|
Mark Seaborn
2011/08/08 16:25:36
You don't need to flush if you're exiting straight
|
| + return |
| + |
| # On the main Chrome waterfall, we may need to control where the tests are |
| # run. |
| # If there is serious skew in the PPAPI interface that causes all of |