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

Side by Side Diff: test/ios/gyptest-app-error-ios.py

Issue 32193007: [ninja/mac] Add xcode_emulation support for -Wobjc-missing-property-synthesis. (Closed) Base URL: http://gyp.googlecode.com/svn/trunk/
Patch Set: Created 7 years, 1 month 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 unified diff | Download patch | Annotate | Revision Log
Property Changes:
Added: svn:executable
## -0,0 +1 ##
+*
\ No newline at end of property
Added: svn:eol-style
## -0,0 +1 ##
+LF
\ No newline at end of property
OLDNEW
(Empty)
1 #!/usr/bin/env python
2
3 # Copyright (c) 2012 Google Inc. All rights reserved.
4 # Use of this source code is governed by a BSD-style license that can be
5 # found in the LICENSE file.
6
7 """
8 Verifies that ios app bundles are built correctly.
9 """
10
11 import TestGyp
12
13 import sys
14
15 if sys.platform == 'darwin':
16 expected_error = 'auto property synthesis is synthesizing property not ' \
17 'explicitly synthesized'
18
19 test = TestGyp.TestGyp(formats=['xcode', 'ninja'])
20
21 test.run_gyp('test-error.gyp', chdir='app-bundle')
22
23 test.build('test-error.gyp', test.ALL, chdir='app-bundle')
24
25 if expected_error in test.stdout():
26 test.pass_test()
27 else:
28 test.fail_test()
OLDNEW
« test/ios/app-bundle/test-error.gyp ('K') | « test/ios/app-bundle/test-error.gyp ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698