aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end/BUILD
diff options
context:
space:
mode:
authorGravatar Adele Zhou <adelez@google.com>2018-02-20 17:07:53 -0800
committerGravatar Adele Zhou <adelez@google.com>2018-02-20 17:46:39 -0800
commit1c805ec901761a81eb9298fb87b1c8592b46fe2a (patch)
tree716e0f10c2d8e4bd66519e0462a375caa38e9695 /test/cpp/end2end/BUILD
parent085a3afcae15ab76395289e70d05e5b1bf057ec4 (diff)
Add more bazel tests
Diffstat (limited to 'test/cpp/end2end/BUILD')
-rw-r--r--test/cpp/end2end/BUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/cpp/end2end/BUILD b/test/cpp/end2end/BUILD
index afa054ae10..8ab0811ffa 100644
--- a/test/cpp/end2end/BUILD
+++ b/test/cpp/end2end/BUILD
@@ -201,6 +201,27 @@ grpc_cc_test(
)
grpc_cc_test(
+ name = "health_service_end2end_test",
+ srcs = ["health_service_end2end_test.cc"],
+ external_deps = [
+ "gtest",
+ ],
+ deps = [
+ ":test_service_impl",
+ "//:gpr",
+ "//:grpc",
+ "//:grpc++",
+ "//src/proto/grpc/health/v1:health_proto",
+ "//src/proto/grpc/testing:echo_messages_proto",
+ "//src/proto/grpc/testing:echo_proto",
+ "//src/proto/grpc/testing/duplicate:echo_duplicate_proto",
+ "//test/core/util:gpr_test_util",
+ "//test/core/util:grpc_test_util",
+ "//test/cpp/util:test_util",
+ ],
+)
+
+grpc_cc_test(
name = "hybrid_end2end_test",
srcs = ["hybrid_end2end_test.cc"],
external_deps = [