Updated Branches: refs/heads/master a71b2bdb2 -> 609e88281
Fix ARC issue in start page tests (critical for Xcode5) Project: http://git-wip-us.apache.org/repos/asf/cordova-ios/repo Commit: http://git-wip-us.apache.org/repos/asf/cordova-ios/commit/b0db1d9a Tree: http://git-wip-us.apache.org/repos/asf/cordova-ios/tree/b0db1d9a Diff: http://git-wip-us.apache.org/repos/asf/cordova-ios/diff/b0db1d9a Branch: refs/heads/master Commit: b0db1d9ae146fa4dda45651db3cb2f4830a990d1 Parents: a71b2bd Author: Ian Clelland <[email protected]> Authored: Fri Aug 30 11:17:01 2013 -0400 Committer: Ian Clelland <[email protected]> Committed: Fri Aug 30 11:17:01 2013 -0400 ---------------------------------------------------------------------- CordovaLibTests/CDVStartPageTests.m | 4 ++-- .../CordovaTests.xcodeproj/project.pbxproj | 2 ++ CordovaLibTests/[email protected] | Bin 0 -> 18594 bytes 3 files changed, 4 insertions(+), 2 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/b0db1d9a/CordovaLibTests/CDVStartPageTests.m ---------------------------------------------------------------------- diff --git a/CordovaLibTests/CDVStartPageTests.m b/CordovaLibTests/CDVStartPageTests.m index 881fd8b..a57798c 100644 --- a/CordovaLibTests/CDVStartPageTests.m +++ b/CordovaLibTests/CDVStartPageTests.m @@ -24,8 +24,8 @@ #import "AppDelegate.h" @interface CDVStartPageTestViewController : UIViewController -@property (assign, nonatomic) CDVViewController* vc1; -@property (assign, nonatomic) CDVViewController* vc2; +@property (strong, nonatomic) CDVViewController* vc1; +@property (strong, nonatomic) CDVViewController* vc2; @end @implementation CDVStartPageTestViewController http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/b0db1d9a/CordovaLibTests/CordovaTests.xcodeproj/project.pbxproj ---------------------------------------------------------------------- diff --git a/CordovaLibTests/CordovaTests.xcodeproj/project.pbxproj b/CordovaLibTests/CordovaTests.xcodeproj/project.pbxproj index 3c5156f..b61a0df 100644 --- a/CordovaLibTests/CordovaTests.xcodeproj/project.pbxproj +++ b/CordovaLibTests/CordovaTests.xcodeproj/project.pbxproj @@ -596,6 +596,7 @@ GCC_VERSION = com.apple.compilers.llvm.clang.1_0; INFOPLIST_FILE = "CordovaLibTests-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 5.0; + ONLY_ACTIVE_ARCH = YES; OTHER_LDFLAGS = ( "-all_load", "-ObjC", @@ -627,6 +628,7 @@ GCC_VERSION = com.apple.compilers.llvm.clang.1_0; INFOPLIST_FILE = "CordovaLibTests-Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 5.0; + ONLY_ACTIVE_ARCH = YES; OTHER_LDFLAGS = ( "-all_load", "-ObjC", http://git-wip-us.apache.org/repos/asf/cordova-ios/blob/b0db1d9a/CordovaLibTests/[email protected] ---------------------------------------------------------------------- diff --git a/CordovaLibTests/[email protected] b/CordovaLibTests/[email protected] new file mode 100644 index 0000000..0891b7a Binary files /dev/null and b/CordovaLibTests/[email protected] differ
