diff options
author | Craig Tiller <ctiller@google.com> | 2015-02-12 15:59:43 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-02-12 15:59:43 -0800 |
commit | ec3257c120c5c199101ef99cff25cddccabe005e (patch) | |
tree | ab652c4d52bb9e51c9a8218aee75e0919b91504f /test/cpp | |
parent | 3d20c5e8c68308b25c1cc248c613e08e1c7d7b32 (diff) |
Fix end2end leaks
Diffstat (limited to 'test/cpp')
-rw-r--r-- | test/cpp/end2end/end2end_test.cc | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/test/cpp/end2end/end2end_test.cc b/test/cpp/end2end/end2end_test.cc index 2aaecb4e11..4fda5808bd 100644 --- a/test/cpp/end2end/end2end_test.cc +++ b/test/cpp/end2end/end2end_test.cc @@ -445,5 +445,6 @@ int main(int argc, char** argv) { ::testing::InitGoogleTest(&argc, argv); int result = RUN_ALL_TESTS(); grpc_shutdown(); + google::protobuf::ShutdownProtobufLibrary(); return result; } |