aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/run_tests.sh
diff options
context:
space:
mode:
authorGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-02 10:10:52 +0200
committerGravatar Jan Tattermusch <jtattermusch@google.com>2017-08-10 10:38:06 +0200
commit9359e5004552fa14513f45a49275b55d33522548 (patch)
tree958538df442ead73d7f4b807e03310ba0af18955 /src/objective-c/tests/run_tests.sh
parent593a22a95cf6759f717efceb9ac0f1efe75c4ef6 (diff)
objc tests cleanup
Diffstat (limited to 'src/objective-c/tests/run_tests.sh')
-rwxr-xr-xsrc/objective-c/tests/run_tests.sh32
1 files changed, 0 insertions, 32 deletions
diff --git a/src/objective-c/tests/run_tests.sh b/src/objective-c/tests/run_tests.sh
index d9c78ebac9..8843edaede 100755
--- a/src/objective-c/tests/run_tests.sh
+++ b/src/objective-c/tests/run_tests.sh
@@ -23,38 +23,6 @@ cd $(dirname $0)
# Run the tests server.
BINDIR=../../../bins/$CONFIG
-PROTOC=$BINDIR/protobuf/protoc
-PLUGIN=$BINDIR/grpc_objective_c_plugin
-
-rm -rf PluginTest/*pb*
-
-# Verify the output proto filename
-eval $PROTOC \
- --plugin=protoc-gen-grpc=$PLUGIN \
- --objc_out=PluginTest \
- --grpc_out=PluginTest \
- -I PluginTest \
- -I ../../../third_party/protobuf/src \
- PluginTest/*.proto
-
-[ -e ./PluginTest/TestDashFilename.pbrpc.h ] || {
- echo >&2 "protoc outputs wrong filename."
- exit 1
-}
-
-# Verify names of the imported protos in generated code
-[ "`cat PluginTest/TestDashFilename.pbrpc.h |
- egrep '#import ".*\.pb(objc|rpc)\.h"$' |
- egrep '-'`" ] && {
- echo >&2 "protoc generated import with wrong filename."
- exit 1
-}
-[ "`cat PluginTest/TestDashFilename.pbrpc.m |
- egrep '#import ".*\.pb(objc|rpc)\.m"$' |
- egrep '-'`" ] && {
- echo >&2 "protoc generated import with wrong filename."
- exit 1
-}
[ -f $BINDIR/interop_server ] || {
echo >&2 "Can't find the test server. Make sure run_tests.py is making" \