Reduce # of message sizes used in each scenario

pull/12852/head
Vijay Pai 7 years ago
parent 39f36b4957
commit c4afc644f7
  1. 2
      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);

Loading…
Cancel
Save