| Index: test/ios/gyptest-xcode-ninja.py
|
| ===================================================================
|
| --- test/ios/gyptest-xcode-ninja.py (revision 1925)
|
| +++ test/ios/gyptest-xcode-ninja.py (working copy)
|
| @@ -16,14 +16,10 @@
|
| if sys.platform == 'darwin':
|
| test = TestGyp.TestGyp(formats=['xcode'])
|
|
|
| - # Run ninja first
|
| - test.format = 'ninja'
|
| + # Run ninja and xcode-ninja
|
| + test.formats = ['ninja', 'xcode-ninja']
|
| test.run_gyp('test.gyp', chdir='app-bundle')
|
|
|
| - # Then run xcode-ninja
|
| - test.format = 'xcode-ninja'
|
| - test.run_gyp('test.gyp', chdir='app-bundle')
|
| -
|
| # If it builds the target, it works.
|
| test.build('test.ninja.gyp', chdir='app-bundle')
|
| test.pass_test()
|
|
|