From a25c9b4aa06d74dec0e7d5346c64b86191a1632c Mon Sep 17 00:00:00 2001
From: Craig Tiller <ctiller@google.com>
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 c924b1a238..8fe69514f6 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 <sstream>
+
 #include <grpc++/support/channel_arguments.h>
 #include <grpc/grpc.h>
 #include <grpc/support/alloc.h>
@@ -241,6 +243,7 @@ static grpc_transport dummy_transport = {&dummy_transport_vtable};
 template <class Fixture>
 static void BM_FilterInitDestroy(benchmark::State &state) {
   Fixture fixture;
+  std::ostringstream label;
 
   std::vector<grpc_arg> 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<nullptr, 0> NoFilter;
-- 
GitLab