diff options
author | yang-g <yangg@google.com> | 2016-02-22 10:00:20 -0800 |
---|---|---|
committer | yang-g <yangg@google.com> | 2016-02-22 10:00:20 -0800 |
commit | ad0df7bf1fa9a2ad6302016cfbe0b86793f810c5 (patch) | |
tree | 24e0e74f36ea2328c7f49145a13dffde4d510b21 /test/cpp | |
parent | 5bcddc89a9124e8f48dab1c8a6828236f2968c70 (diff) |
Discard the read buffer on stream error
Diffstat (limited to 'test/cpp')
-rw-r--r-- | test/cpp/end2end/async_end2end_test.cc | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/test/cpp/end2end/async_end2end_test.cc b/test/cpp/end2end/async_end2end_test.cc index a15cbd7ee2..9ca3bf98f8 100644 --- a/test/cpp/end2end/async_end2end_test.cc +++ b/test/cpp/end2end/async_end2end_test.cc @@ -989,6 +989,10 @@ class AsyncEnd2endServerTryCancelTest : public AsyncEnd2endTest { if (server_try_cancel == CANCEL_AFTER_PROCESSING) { ServerTryCancel(&srv_ctx); + + // Client reads may fail bacause it is notified that the stream is + // cancelled. + ignore_cq_result = true; } // Client attemts to read the three messages from the server |