Skip to content
Snippets Groups Projects
Commit aef386b2 authored by Vijay Pai's avatar Vijay Pai
Browse files

Merge pull request #1530 from ctiller/async-fail

Increase test timeout
parents fe117723 f51199f2
No related branches found
No related tags found
No related merge requests found
...@@ -198,8 +198,9 @@ TEST_F(AsyncEnd2endTest, AsyncNextRpc) { ...@@ -198,8 +198,9 @@ TEST_F(AsyncEnd2endTest, AsyncNextRpc) {
stub_->AsyncEcho(&cli_ctx, send_request, &cli_cq_, tag(1))); stub_->AsyncEcho(&cli_ctx, send_request, &cli_cq_, tag(1)));
std::chrono::system_clock::time_point time_now( std::chrono::system_clock::time_point time_now(
std::chrono::system_clock::now()), std::chrono::system_clock::now());
time_limit(std::chrono::system_clock::now() + std::chrono::seconds(5)); std::chrono::system_clock::time_point time_limit(
std::chrono::system_clock::now() + std::chrono::seconds(10));
verify_timed_ok(&srv_cq_, -1, true, time_now, CompletionQueue::TIMEOUT); verify_timed_ok(&srv_cq_, -1, true, time_now, CompletionQueue::TIMEOUT);
verify_timed_ok(&cli_cq_, -1, true, time_now, CompletionQueue::TIMEOUT); verify_timed_ok(&cli_cq_, -1, true, time_now, CompletionQueue::TIMEOUT);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment