aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/smoke_test.cc
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-24 14:13:27 -0700
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-04-24 14:13:27 -0700
commit4107ba289747be6fba879e6060d40969f1aee89c (patch)
treedebfde14b81f8bbbc33c7c677eaba6d517fada25 /test/cpp/qps/smoke_test.cc
parent884f4dad58891a119c53af664680c134c73723b3 (diff)
parent96de48449ccc6009bc745ab5ff35837a4720fdd1 (diff)
Merge pull request #1365 from yang-g/init
Attempt to remove the need of calling grpc_init/shutdown in c++ application code
Diffstat (limited to 'test/cpp/qps/smoke_test.cc')
-rw-r--r--test/cpp/qps/smoke_test.cc3
1 files changed, 0 insertions, 3 deletions
diff --git a/test/cpp/qps/smoke_test.cc b/test/cpp/qps/smoke_test.cc
index 9531913b00..e390730832 100644
--- a/test/cpp/qps/smoke_test.cc
+++ b/test/cpp/qps/smoke_test.cc
@@ -136,14 +136,11 @@ static void RunQPS() {
} // namespace grpc
int main(int argc, char** argv) {
- grpc_init();
-
using namespace grpc::testing;
RunSynchronousStreamingPingPong();
RunSynchronousUnaryPingPong();
RunAsyncUnaryPingPong();
RunQPS();
- grpc_shutdown();
return 0;
}