aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2017-10-05 18:08:03 -0700
committerGravatar GitHub <noreply@github.com>2017-10-05 18:08:03 -0700
commit4bc0b2b6614785ad5064f55f09e1058167fbc55a (patch)
tree9d9d504d40094c6ecfaa01ee2fb984410281928e /test
parentb83077bacefab2c489a9671bf4d11dcda3347cc5 (diff)
parentc4afc644f736d3fd070716579f41baa2de19dfc2 (diff)
Merge pull request #12852 from vjpai/rent
Reduce # of message sizes used in each async_end2end_test scenario
Diffstat (limited to 'test')
-rw-r--r--test/cpp/end2end/async_end2end_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/end2end/async_end2end_test.cc b/test/cpp/end2end/async_end2end_test.cc
index 393c67cd35..bbefbac4d0 100644
--- a/test/cpp/end2end/async_end2end_test.cc
+++ b/test/cpp/end2end/async_end2end_test.cc
@@ -1742,7 +1742,7 @@ std::vector<TestScenario> CreateTestScenarios(bool test_disable_blocking,
GPR_ASSERT(!credentials_types.empty());
messages.push_back("Hello");
- for (int sz = 1; sz < test_big_limit; sz *= 2) {
+ for (int sz = 1; sz <= test_big_limit; sz *= 32) {
grpc::string big_msg;
for (int i = 0; i < sz * 1024; i++) {
char c = 'a' + (i % 26);