From a25c9b4aa06d74dec0e7d5346c64b86191a1632c Mon Sep 17 00:00:00 2001 From: Craig Tiller Date: Wed, 15 Feb 2017 17:19:22 -0800 Subject: [PATCH] Call out no-filter case --- test/cpp/microbenchmarks/bm_call_create.cc | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/test/cpp/microbenchmarks/bm_call_create.cc b/test/cpp/microbenchmarks/bm_call_create.cc index c924b1a238b..8fe69514f68 100644 --- a/test/cpp/microbenchmarks/bm_call_create.cc +++ b/test/cpp/microbenchmarks/bm_call_create.cc @@ -34,6 +34,8 @@ /* This benchmark exists to ensure that the benchmark integration is * working */ +#include + #include #include #include @@ -241,6 +243,7 @@ static grpc_transport dummy_transport = {&dummy_transport_vtable}; template static void BM_FilterInitDestroy(benchmark::State &state) { Fixture fixture; + std::ostringstream label; std::vector args; FakeClientChannelFactory fake_client_channel_factory; @@ -256,6 +259,7 @@ static void BM_FilterInitDestroy(benchmark::State &state) { } if (fixture.flags & CHECKS_NOT_LAST) { filters.push_back(&dummy_filter::dummy_filter); + label << " has_dummy_filter"; } grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT; @@ -286,6 +290,8 @@ static void BM_FilterInitDestroy(benchmark::State &state) { } grpc_channel_stack_destroy(&exec_ctx, channel_stack); grpc_exec_ctx_finish(&exec_ctx); + + state.SetLabel(label.str()); } typedef Fixture NoFilter;