aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/test/shell/bazel/bazel_example_test.sh
diff options
context:
space:
mode:
authorGravatar Lukacs Berki <lberki@google.com>2016-04-11 10:34:45 +0000
committerGravatar Lukacs Berki <lberki@google.com>2016-04-11 11:24:01 +0000
commit285112c9b61ca3782e00ccf6411339da7291a3c3 (patch)
tree9e6c9d3c905be50c56209b3f37d3098ab8b23caf /src/test/shell/bazel/bazel_example_test.sh
parentdaafdcda9c8e0f883e18bc7c69aad44903a909c8 (diff)
Remove te protocol compiler rules from @bazel_tools.
The immmediate reason for this change is that we also need to add gRPC support to the proto rules, and we don't want to also support gRPC in a half-baked way. This makes the Bazel binary much smaller and avoid giving false signals that we (for now) support protobuf compilation. The protobuf rules are only for compiling Bazel itself. RELNOTES[INC]: Bazel does not embed protocol buffer-related rules anymore. -- MOS_MIGRATED_REVID=119516246
Diffstat (limited to 'src/test/shell/bazel/bazel_example_test.sh')
-rwxr-xr-xsrc/test/shell/bazel/bazel_example_test.sh8
1 files changed, 0 insertions, 8 deletions
diff --git a/src/test/shell/bazel/bazel_example_test.sh b/src/test/shell/bazel/bazel_example_test.sh
index 9908ebc6c9..b9d2aef276 100755
--- a/src/test/shell/bazel/bazel_example_test.sh
+++ b/src/test/shell/bazel/bazel_example_test.sh
@@ -168,12 +168,4 @@ function test_java_test_skylark() {
assert_test_fails //${javatests}:fail
}
-function test_protobuf() {
- setup_protoc_support
- local jar=bazel-bin/examples/proto/libtest_proto.jar
- assert_build_output $jar //examples/proto:test_proto
- unzip -v $jar | grep -q 'KeyVal\.class' \
- || fail "Did not find KeyVal class in proto jar."
-}
-
run_suite "examples"