Chromium Code Reviews| Index: test/mac/gyptest-action-envvars.py |
| diff --git a/test/mac/gyptest-action-envvars.py b/test/mac/gyptest-action-envvars.py |
| index b4f37c43a29b129e1d08a74469936a1b59a3253b..25b6b836420434be414759cb37561915cc7ac379 100644 |
| --- a/test/mac/gyptest-action-envvars.py |
| +++ b/test/mac/gyptest-action-envvars.py |
| @@ -15,6 +15,10 @@ import sys |
| if sys.platform == 'darwin': |
| test = TestGyp.TestGyp(formats=['ninja', 'make', 'xcode']) |
| + # The ninja generator ignores SYMROOT, while the xcode generator doesn't. |
|
sdefresne
2014/09/02 15:13:05
Same here.
Tobias
2014/10/02 18:19:19
Done (https://code.google.com/p/gyp/issues/detail?
|
| + if test.format == 'xcode-ninja': |
| + test.skip_test() |
| + |
| CHDIR = 'action-envvars' |
| test.run_gyp('action/action.gyp', chdir=CHDIR) |
| test.build('action/action.gyp', 'action', chdir=CHDIR, SYMROOT='../build') |