Chromium Code Reviews| 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..c05d3bb3bd730c7e983bfd7a729da034c7995664 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. |
|
sdefresne
2014/09/02 15:13:05
Same question here.
Tobias
2014/10/02 18:19:19
This test is testing a feature that is apparently
|
| +# Skip the rest of this test. |
| +if test.format == 'xcode-ninja': |
| + test.pass_test() |
| + |
| # Same again but with the host toolset. |
| replacements['TOOLSET'] = 'host' |
| s = Template(open(gypfile + '.in').read()) |