Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(251)

Unified Diff: test/mac/gyptest-action-envvars.py

Issue 421453003: Add TestGypXcodeNinja to run tests against the xcode-ninja generator (Closed) Base URL: https://chromium.googlesource.com/external/gyp.git@master
Patch Set: Rebase onto origin/master Created 6 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
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')

Powered by Google App Engine
This is Rietveld 408576698