diff options
author | vjpai <vpai@google.com> | 2016-01-26 15:24:56 -0800 |
---|---|---|
committer | vjpai <vpai@google.com> | 2016-01-26 15:24:56 -0800 |
commit | c1e70dbc61359f5a23f34f1ae62e83b5b1af2f23 (patch) | |
tree | f0a198f5ea434b6ee5655f7094de59eab72fb652 /test/cpp/end2end | |
parent | 64edc3bdd761a10a0a5e51a8d41ae73a7edac4ef (diff) |
100->1000
Diffstat (limited to 'test/cpp/end2end')
-rw-r--r-- | test/cpp/end2end/thread_stress_test.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/test/cpp/end2end/thread_stress_test.cc b/test/cpp/end2end/thread_stress_test.cc index 4973cdca5d..f6d8475c70 100644 --- a/test/cpp/end2end/thread_stress_test.cc +++ b/test/cpp/end2end/thread_stress_test.cc @@ -219,7 +219,7 @@ TEST_F(End2endTest, ThreadStress) { ResetStub(); std::vector<std::thread*> threads; for (int i = 0; i < 100; ++i) { - threads.push_back(new std::thread(SendRpc, stub_.get(), 100)); + threads.push_back(new std::thread(SendRpc, stub_.get(), 1000)); } for (int i = 0; i < 100; ++i) { threads[i]->join(); |