| Index: test/compiler-override/gyptest-compiler-global-settings.py
|
| diff --git a/test/compiler-override/gyptest-compiler-global-settings.py b/test/compiler-override/gyptest-compiler-global-settings.py
|
| index a4f5ddb5b64cd0f2c1001e1d7abf3deb784dac78..d58fc7c2f995d617fc28a7697b6ff3cd494a1113 100755
|
| --- a/test/compiler-override/gyptest-compiler-global-settings.py
|
| +++ b/test/compiler-override/gyptest-compiler-global-settings.py
|
| @@ -43,6 +43,11 @@ os.environ.update(old_env)
|
| test.build(gypfile)
|
| test.must_contain_all_lines(test.stdout(), ['my_cc.py', 'my_cxx.py', 'FOO'])
|
|
|
| +# The xcode generator chokes on the 'host' toolset. Skip the rest of
|
| +# this test (cf. https://code.google.com/p/gyp/issues/detail?id=454).
|
| +if test.format == 'xcode-ninja':
|
| + test.pass_test()
|
| +
|
| # Same again but with the host toolset.
|
| replacements['TOOLSET'] = 'host'
|
| s = Template(open(gypfile + '.in').read())
|
|
|