aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/microbenchmarks
diff options
context:
space:
mode:
authorGravatar ncteisen <ncteisen@gmail.com>2018-11-30 11:57:01 -0800
committerGravatar ncteisen <ncteisen@gmail.com>2018-11-30 15:37:02 -0800
commit8ace4e16dfca8224d7ce4de60d046059127595aa (patch)
tree8da944a4dc09737e7e811c393497cb417d2ee2f5 /test/cpp/microbenchmarks
parent475ccfd110c6dfd0232cd8feedea7e4b8c42a82a (diff)
disable some add some
Diffstat (limited to 'test/cpp/microbenchmarks')
-rw-r--r--test/cpp/microbenchmarks/BUILD21
1 files changed, 18 insertions, 3 deletions
diff --git a/test/cpp/microbenchmarks/BUILD b/test/cpp/microbenchmarks/BUILD
index 671e7f1096..84ea386870 100644
--- a/test/cpp/microbenchmarks/BUILD
+++ b/test/cpp/microbenchmarks/BUILD
@@ -53,11 +53,12 @@ grpc_cc_test(
uses_polling = False,
)
-grpc_cc_test(
+# TODO(https://github.com/grpc/grpc/pull/16882): make this a test target
+# right now it OOMs
+grpc_cc_binary(
name = "bm_arena",
srcs = ["bm_arena.cc"],
deps = [":helpers"],
- uses_polling = False,
)
grpc_cc_test(
@@ -67,7 +68,9 @@ grpc_cc_test(
uses_polling = False,
)
-grpc_cc_test(
+# TODO(https://github.com/grpc/grpc/pull/16882): make this a test target
+# right now it fails UBSAN
+grpc_cc_binary(
name = "bm_call_create",
srcs = ["bm_call_create.cc"],
deps = [":helpers"],
@@ -162,6 +165,18 @@ grpc_cc_test(
uses_polling = False,
)
+grpc_cc_test(
+ name = "bm_chttp2_transport",
+ srcs = ["bm_chttp2_transport.cc"],
+ deps = [":helpers"],
+)
+
+grpc_cc_test(
+ name = "bm_pollset",
+ srcs = ["bm_pollset.cc"],
+ deps = [":helpers"],
+)
+
grpc_cc_binary(
name = "bm_opencensus_plugin",
testonly = 1,