diff options
author | Craig Tiller <ctiller@google.com> | 2015-01-13 17:26:46 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-01-14 11:21:21 -0800 |
commit | 14e60e9f8b147d873b6320e24c100a8dbb087418 (patch) | |
tree | 87d4abde06e5ca110454bfd3a1333486b0cae3d5 /test/cpp/end2end | |
parent | e1e2475b6938eca4378d2bc6632db31c7dfa2b02 (diff) |
Use C signal handling in C++ end2end
Diffstat (limited to 'test/cpp/end2end')
-rw-r--r-- | test/cpp/end2end/end2end_test.cc | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/cpp/end2end/end2end_test.cc b/test/cpp/end2end/end2end_test.cc index e01a6efe82..3a1da68e47 100644 --- a/test/cpp/end2end/end2end_test.cc +++ b/test/cpp/end2end/end2end_test.cc @@ -34,6 +34,7 @@ #include <chrono> #include <thread> +#include "test/core/util/test_config.h" #include "test/cpp/util/echo_duplicate.pb.h" #include "test/cpp/util/echo.pb.h" #include "src/cpp/util/time.h" @@ -435,6 +436,7 @@ TEST_F(End2endTest, BadCredentials) { } // namespace grpc int main(int argc, char** argv) { + grpc_test_init(argc, argv); grpc_init(); ::testing::InitGoogleTest(&argc, argv); int result = RUN_ALL_TESTS(); |