aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/client_channel/BUILD
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2018-03-28 07:42:20 -0700
committerGravatar Mark D. Roth <roth@google.com>2018-03-28 07:42:20 -0700
commit9db86fcc6366a472abd50699719e4631c2df5393 (patch)
tree5efe7b7e1977b116f911197e10b4468d22b2400e /test/core/client_channel/BUILD
parent31bdbbeacf84d3a1e867e50b312c9cf46afc20db (diff)
Convert retry throttle code to C++ and add tests.
Diffstat (limited to 'test/core/client_channel/BUILD')
-rw-r--r--test/core/client_channel/BUILD15
1 files changed, 15 insertions, 0 deletions
diff --git a/test/core/client_channel/BUILD b/test/core/client_channel/BUILD
index 5148dc5f74..db98ffab77 100644
--- a/test/core/client_channel/BUILD
+++ b/test/core/client_channel/BUILD
@@ -53,3 +53,18 @@ grpc_cc_test(
"//test/core/util:grpc_test_util",
],
)
+
+grpc_cc_test(
+ name = "retry_throttle_test",
+ srcs = ["retry_throttle_test.cc"],
+ external_deps = [
+ "gtest",
+ ],
+ language = "C++",
+ deps = [
+ "//:gpr",
+ "//:grpc",
+ "//test/core/util:gpr_test_util",
+ "//test/core/util:grpc_test_util",
+ ],
+)