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

Unified Diff: test/mac/gyptest-unicode-settings.py

Issue 23892016: Fix XCObject._EncodeString() for unicode characters. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk
Patch Set: Add tests. Created 7 years, 3 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-unicode-settings.py
diff --git a/test/mac/gyptest-deployment-target.py b/test/mac/gyptest-unicode-settings.py
similarity index 51%
copy from test/mac/gyptest-deployment-target.py
copy to test/mac/gyptest-unicode-settings.py
index afa6c776ef9656b42980ce376356dd2587785e82..88ac73330939a416919a0939ec4263e293ab0bc6 100644
--- a/test/mac/gyptest-deployment-target.py
+++ b/test/mac/gyptest-unicode-settings.py
@@ -5,7 +5,7 @@
# found in the LICENSE file.
"""
-Verifies that MACOSX_DEPLOYMENT_TARGET works.
+Verifies that unicode strings in 'xcode_settings' work.
"""
import TestGyp
@@ -13,11 +13,7 @@ import TestGyp
import sys
if sys.platform == 'darwin':
- test = TestGyp.TestGyp(formats=['make', 'ninja', 'xcode'])
-
- test.run_gyp('deployment-target.gyp', chdir='deployment-target')
-
- test.build('deployment-target.gyp', test.ALL, chdir='deployment-target')
-
+ test = TestGyp.TestGyp(formats=['xcode'])
+ test.run_gyp('test.gyp', chdir='unicode-settings')
+ test.build('test.gyp', test.ALL, chdir='unicode-settings')
test.pass_test()
-

Powered by Google App Engine
This is Rietveld 408576698