aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2015-07-17 16:05:28 -0700
committerGravatar Vijay Pai <vpai@google.com>2015-07-17 16:05:28 -0700
commitf87a0984ab727e95b068237f3bb0689d9685c8ea (patch)
tree3086bee99a5e7ec12ddcd9de1e69f8a63182ef3b /test/cpp/qps
parente9881bbaf3d53aa80099c42c80fb3331ff38270a (diff)
parentaf26143b6fc76559f0907aadfc9f23c4e2e60844 (diff)
Merge pull request #2470 from ctiller/i-want-to-wait-free
Lock free requested call fulfillment path
Diffstat (limited to 'test/cpp/qps')
-rw-r--r--test/cpp/qps/server_async.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/qps/server_async.cc b/test/cpp/qps/server_async.cc
index be23204608..846f8f31b0 100644
--- a/test/cpp/qps/server_async.cc
+++ b/test/cpp/qps/server_async.cc
@@ -80,7 +80,7 @@ class AsyncQpsServerTest : public Server {
server_ = builder.BuildAndStart();
using namespace std::placeholders;
- for (int i = 0; i < 10; i++) {
+ for (int i = 0; i < 10000 / config.threads(); i++) {
for (int j = 0; j < config.threads(); j++) {
auto request_unary = std::bind(
&TestService::AsyncService::RequestUnaryCall, &async_service_, _1,