aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2017-10-05 14:40:34 -0700
committerGravatar Vijay Pai <vpai@google.com>2017-10-05 14:40:34 -0700
commitc4afc644f736d3fd070716579f41baa2de19dfc2 (patch)
tree6524d80547bcfd187bb9a90cd4f6ef7d81797318 /test/cpp/end2end
parent39f36b4957ae68ab873832967c42c5172e5f880d (diff)
Reduce # of message sizes used in each scenario
Diffstat (limited to 'test/cpp/end2end')
-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 41090d161a..3adb0c5a17 100644
--- a/test/cpp/end2end/async_end2end_test.cc
+++ b/test/cpp/end2end/async_end2end_test.cc
@@ -1788,7 +1788,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);