aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp
diff options
context:
space:
mode:
Diffstat (limited to 'test/cpp')
-rw-r--r--test/cpp/microbenchmarks/bm_error.cc22
1 files changed, 2 insertions, 20 deletions
diff --git a/test/cpp/microbenchmarks/bm_error.cc b/test/cpp/microbenchmarks/bm_error.cc
index ff1519b1f4..76f168b75b 100644
--- a/test/cpp/microbenchmarks/bm_error.cc
+++ b/test/cpp/microbenchmarks/bm_error.cc
@@ -72,35 +72,17 @@ static void BM_ErrorCreateAndSetStatus(benchmark::State& state) {
BENCHMARK(BM_ErrorCreateAndSetStatus);
static void BM_ErrorCreateAndSetIntAndStr(benchmark::State& state) {
+ TrackCounters track_counters;
while (state.KeepRunning()) {
GRPC_ERROR_UNREF(grpc_error_set_str(
grpc_error_set_int(GRPC_ERROR_CREATE("GOAWAY received"),
GRPC_ERROR_INT_HTTP2_ERROR, (intptr_t)0),
GRPC_ERROR_STR_RAW_BYTES, "raw bytes"));
}
+ track_counters.Finish(state);
}
BENCHMARK(BM_ErrorCreateAndSetIntAndStr);
-static void BM_ErrorCreateAndSetIntLoop(benchmark::State& state) {
- grpc_error* error = GRPC_ERROR_CREATE("Error");
- int n = 0;
- while (state.KeepRunning()) {
- error = grpc_error_set_int(error, GRPC_ERROR_INT_GRPC_STATUS, n++);
- }
- GRPC_ERROR_UNREF(error);
-}
-BENCHMARK(BM_ErrorCreateAndSetIntLoop);
-
-static void BM_ErrorCreateAndSetStrLoop(benchmark::State& state) {
- grpc_error* error = GRPC_ERROR_CREATE("Error");
- const char* str = "hello";
- while (state.KeepRunning()) {
- error = grpc_error_set_str(error, GRPC_ERROR_STR_GRPC_MESSAGE, str);
- }
- GRPC_ERROR_UNREF(error);
-}
-BENCHMARK(BM_ErrorCreateAndSetStrLoop);
-
static void BM_ErrorRefUnref(benchmark::State& state) {
TrackCounters track_counters;
grpc_error* error = GRPC_ERROR_CREATE("Error");