aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/objective-c/tests/build_example_test.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/build_example_test.sh
parent593a22a95cf6759f717efceb9ac0f1efe75c4ef6 (diff)
objc tests cleanup
Diffstat (limited to 'src/objective-c/tests/build_example_test.sh')
-rwxr-xr-xsrc/objective-c/tests/build_example_test.sh57
1 files changed, 0 insertions, 57 deletions
diff --git a/src/objective-c/tests/build_example_test.sh b/src/objective-c/tests/build_example_test.sh
deleted file mode 100755
index 9afd7564c9..0000000000
--- a/src/objective-c/tests/build_example_test.sh
+++ /dev/null
@@ -1,57 +0,0 @@
-#!/bin/bash
-# Copyright 2016 gRPC authors.
-#
-# Licensed under the Apache License, Version 2.0 (the "License");
-# you may not use this file except in compliance with the License.
-# You may obtain a copy of the License at
-#
-# http://www.apache.org/licenses/LICENSE-2.0
-#
-# Unless required by applicable law or agreed to in writing, software
-# distributed under the License is distributed on an "AS IS" BASIS,
-# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
-# See the License for the specific language governing permissions and
-# limitations under the License.
-
-# Don't run this script standalone. Instead, run from the repository root:
-# ./tools/run_tests/run_tests.py -l objc
-
-set -evo pipefail
-
-cd `dirname $0`
-
-trap 'echo "EXIT TIME: $(date)"' EXIT
-
-echo "TIME: $(date)"
-SCHEME=HelloWorld \
- EXAMPLE_PATH=examples/objective-c/helloworld \
- ./build_one_example.sh
-
-echo "TIME: $(date)"
-SCHEME=RouteGuideClient \
- EXAMPLE_PATH=examples/objective-c/route_guide \
- ./build_one_example.sh
-
-echo "TIME: $(date)"
-SCHEME=AuthSample \
- EXAMPLE_PATH=examples/objective-c/auth_sample \
- ./build_one_example.sh
-
-rm -f ../examples/RemoteTestClient/*.{h,m}
-
-echo "TIME: $(date)"
-SCHEME=Sample \
- EXAMPLE_PATH=src/objective-c/examples/Sample \
- ./build_one_example.sh
-
-echo "TIME: $(date)"
-SCHEME=Sample \
- EXAMPLE_PATH=src/objective-c/examples/Sample \
- FRAMEWORKS=YES \
- ./build_one_example.sh
-
-echo "TIME: $(date)"
-SCHEME=SwiftSample \
- EXAMPLE_PATH=src/objective-c/examples/SwiftSample \
- ./build_one_example.sh
-