Merge branch 'stress_tests_new' of github.com:sreecha/grpc into stress_tests_new

pull/3868/head
Sree Kuchibhotla 9 years ago
commit 2bc3ac3032
  1. 2
      test/cpp/interop/stress_test.cc

@ -141,7 +141,6 @@ bool ParseTestCasesString(const string& test_cases,
string test_name = it->substr(0, colon_pos);
int weight = std::stoi(it->substr(colon_pos + 1));
TestCaseType test_case = GetTestTypeFromName(test_name);
if (test_case == UNKNOWN_TEST) {
gpr_log(GPR_ERROR, "Unknown test case: %s", test_name.c_str());
is_success = false;
@ -203,6 +202,7 @@ int main(int argc, char** argv) {
WeightedRandomTestSelector test_selector(tests);
gpr_log(GPR_INFO, "Starting test(s)..");
vector<thread> test_threads;
int thread_idx = 0;
for (auto it = server_addresses.begin(); it != server_addresses.end(); it++) {

Loading…
Cancel
Save