Commit 2398153d authored by thakis@chromium.org's avatar thakis@chromium.org

Disable nacl_integration on mac debug for now.

BUG=91371
TEST=none
TBR=mseaborn

Review URL: http://codereview.chromium.org/7584030

git-svn-id: svn://svn.chromium.org/chrome/trunk/src@95819 0039d316-1c4b-4281-b951-d872f2087c98
parent 623c0444
...@@ -12,6 +12,15 @@ def Main(args): ...@@ -12,6 +12,15 @@ def Main(args):
pwd = os.environ.get('PWD', '') pwd = os.environ.get('PWD', '')
is_integration_bot = 'nacl-chrome' in pwd is_integration_bot = 'nacl-chrome' in pwd
if sys.platform == 'darwin' and 'Debug' in args:
# 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')
sys.stdout.flush()
return
# On the main Chrome waterfall, we may need to control where the tests are # On the main Chrome waterfall, we may need to control where the tests are
# run. # run.
# If there is serious skew in the PPAPI interface that causes all of # If there is serious skew in the PPAPI interface that causes all of
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment