aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/slice/BUILD
diff options
context:
space:
mode:
authorGravatar Mark D. Roth <roth@google.com>2017-04-19 13:28:24 -0700
committerGravatar Mark D. Roth <roth@google.com>2017-04-19 13:28:24 -0700
commit0c0b89a88ba6544e42cca43913ed65dea64bff3a (patch)
tree5103c74188c122883ce10e967ac7e79c73d41c2f /test/core/slice/BUILD
parente300670153d3c7cf62660c49c90cbfc6a63f3c0c (diff)
Change hash table to use linear probing and add unit test.
Also add some missing rules in test/core/slice/BUILD.
Diffstat (limited to 'test/core/slice/BUILD')
-rw-r--r--test/core/slice/BUILD23
1 files changed, 22 insertions, 1 deletions
diff --git a/test/core/slice/BUILD b/test/core/slice/BUILD
index 4d64d0a818..18cf6f60af 100644
--- a/test/core/slice/BUILD
+++ b/test/core/slice/BUILD
@@ -47,13 +47,34 @@ cc_test(
)
cc_test(
- name = "slice_buffer_test",
+ name = "slice_test",
+ srcs = ["slice_test.c"],
+ deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"],
+ copts = ['-std=c99']
+)
+
+cc_test(
+ name = "slice_string_helpers_test",
srcs = ["slice_string_helpers_test.c"],
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"],
copts = ['-std=c99']
)
cc_test(
+ name = "slice_buffer_test",
+ srcs = ["slice_buffer_test.c"],
+ deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"],
+ copts = ['-std=c99']
+)
+
+cc_test(
+ name = "slice_hash_table_test",
+ srcs = ["slice_hash_table_test.c"],
+ deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"],
+ copts = ['-std=c99']
+)
+
+cc_test(
name = "b64_test",
srcs = ["b64_test.c"],
deps = ["//:grpc", "//test/core/util:grpc_test_util", "//:gpr", "//test/core/util:gpr_test_util"],