aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps
diff options
context:
space:
mode:
authorGravatar Noah Eisen <ncteisen@google.com>2018-02-09 09:34:04 -0800
committerGravatar Noah Eisen <ncteisen@google.com>2018-02-09 09:34:04 -0800
commit4d20a666850b732cf1562487fb5f46ab9654105f (patch)
tree9059162d0f125e02780f506c2476d5d9bbc0eb7d /test/cpp/qps
parentcddf6f838aa48c8d5c9f75cee5a8ed8abdcb25b9 (diff)
Run clang fmt
Diffstat (limited to 'test/cpp/qps')
-rw-r--r--test/cpp/qps/report.cc9
1 files changed, 6 insertions, 3 deletions
diff --git a/test/cpp/qps/report.cc b/test/cpp/qps/report.cc
index 863be40f2a..c5e90bd9a4 100644
--- a/test/cpp/qps/report.cc
+++ b/test/cpp/qps/report.cc
@@ -109,9 +109,12 @@ void GprLogReporter::ReportCoreStats(const char* name, int idx,
for (int i = 0; i < GRPC_STATS_HISTOGRAM_COUNT; i++) {
gpr_log(GPR_DEBUG, "%s[%d].%s = %.1lf/%.1lf/%.1lf (50/95/99%%-ile)", name,
idx, grpc_stats_histogram_name[i],
- grpc_stats_histo_percentile(&data, static_cast<grpc_stats_histograms>(i), 50),
- grpc_stats_histo_percentile(&data, static_cast<grpc_stats_histograms>(i), 95),
- grpc_stats_histo_percentile(&data, static_cast<grpc_stats_histograms>(i), 99));
+ grpc_stats_histo_percentile(
+ &data, static_cast<grpc_stats_histograms>(i), 50),
+ grpc_stats_histo_percentile(
+ &data, static_cast<grpc_stats_histograms>(i), 95),
+ grpc_stats_histo_percentile(
+ &data, static_cast<grpc_stats_histograms>(i), 99));
}
}