aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/Podfile
diff options
context:
space:
mode:
authorGravatar Yuchen Zeng <zyc@google.com>2016-06-21 11:13:23 -0700
committerGravatar Yuchen Zeng <zyc@google.com>2016-06-21 11:18:29 -0700
commitd5fd7ddc70e658a0364bd2e43c8a486a25db267c (patch)
treeeea3ea0aad40ffba16b698f44744d922e4b99c19 /src/objective-c/tests/Podfile
parentaa338326ed399832394078282664c6bcf66d11e7 (diff)
Addressed review comments
Removed the silencing for incompatible-pointer-types Removed unused objects Fixed format issues
Diffstat (limited to 'src/objective-c/tests/Podfile')
-rw-r--r--src/objective-c/tests/Podfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/objective-c/tests/Podfile b/src/objective-c/tests/Podfile
index d51b18cc34..6d5f94cbda 100644
--- a/src/objective-c/tests/Podfile
+++ b/src/objective-c/tests/Podfile
@@ -6,7 +6,7 @@ install! 'cocoapods', :deterministic_uuids => false
def shared_pods
pod 'Protobuf', :path => "../../../third_party/protobuf", :inhibit_warnings => true
pod 'BoringSSL', :podspec => "..", :inhibit_warnings => true
- pod 'CronetFramework', :podspec => "..", :inhibit_warnings => true
+ pod 'CronetFramework', :podspec => ".."
pod 'gRPC', :path => "../../.."
pod 'RemoteTest', :path => "RemoteTestClient"
end
@@ -42,6 +42,7 @@ post_install do |installer|
end
if target.name == 'gRPC'
target.build_configurations.each do |config|
+ # TODO(zyc) Remove this setting after the issue is resolved
# GPR_UNREACHABLE_CODE causes "Control may reach end of non-void
# function" warning
config.build_settings['GCC_WARN_ABOUT_RETURN_TYPE'] = 'NO'