aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/interop
diff options
context:
space:
mode:
authorGravatar Juanli Shen <juanlishen@google.com>2018-10-12 19:30:02 -0700
committerGravatar Juanli Shen <juanlishen@google.com>2018-10-22 16:50:07 -0700
commit800a09b24e6aa86830f2916d2d6a8f191577231d (patch)
tree970223f86be3d3d23b325a9d78e3e82cc82927e3 /test/cpp/interop
parentd0cb61eada9d270b9043ec866b55c88617d362be (diff)
Add interop test into bazel build
Diffstat (limited to 'test/cpp/interop')
-rw-r--r--test/cpp/interop/BUILD21
1 files changed, 21 insertions, 0 deletions
diff --git a/test/cpp/interop/BUILD b/test/cpp/interop/BUILD
index 4f21551ff4..0f81305405 100644
--- a/test/cpp/interop/BUILD
+++ b/test/cpp/interop/BUILD
@@ -142,3 +142,24 @@ grpc_cc_binary(
"//test/cpp/util:test_config",
],
)
+
+grpc_cc_test(
+ name = "interop_test",
+ srcs = ["interop_test.cc"],
+ data = [
+ ":interop_client",
+ ":interop_server",
+ ],
+ external_deps = [
+ "gflags",
+ ],
+ deps = [
+ "//:gpr",
+ "//:grpc",
+ "//:grpc++",
+ "//test/core/util:gpr_test_util",
+ "//test/core/util:grpc_test_util",
+ "//test/cpp/util:test_config",
+ "//test/cpp/util:test_util",
+ ],
+)