aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/end2end/thread_stress_test.cc
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2016-01-22 15:34:14 -0800
committerGravatar Vijay Pai <vpai@google.com>2016-01-22 15:34:14 -0800
commitc7c5639d3e8015dc5b6d9a9be0700f0e6c04683b (patch)
treea846a008bc8e70f71a2c0c7265aea26d786e9c01 /test/cpp/end2end/thread_stress_test.cc
parente3b03712fd0ff7138f0d3c5eb8eacea3cfafe3e7 (diff)
Make TearDown follow typical gtest fixture format
Diffstat (limited to 'test/cpp/end2end/thread_stress_test.cc')
-rw-r--r--test/cpp/end2end/thread_stress_test.cc2
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 d4fcbfb8cd..c7a60126f0 100644
--- a/test/cpp/end2end/thread_stress_test.cc
+++ b/test/cpp/end2end/thread_stress_test.cc
@@ -232,11 +232,11 @@ class AsyncClientEnd2endTest : public End2endTest {
AsyncClientEnd2endTest() : rpcs_outstanding_(0) {}
void TearDown() GRPC_OVERRIDE {
- End2endTest::TearDown();
void* ignored_tag;
bool ignored_ok;
while (cq_.Next(&ignored_tag, &ignored_ok))
;
+ End2endTest::TearDown();
}
void Wait() {