aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar zeliard <spacesun@naver.com>2015-04-28 09:48:28 +0900
committerGravatar zeliard <spacesun@naver.com>2015-04-28 09:48:28 +0900
commitd9a0f24098436cd1d917c592ca27f376a4abd6e0 (patch)
treed0fc21ac71a33b92fe6b7cc46c02fcaa50dc44df /test
parent6d2311ab21f3a7bbf64bfe735dbae3d68ef321db (diff)
parentb33e2d3bc2641ece60e392677d52df57736e7aaa (diff)
Merge branch 'master' of https://github.com/grpc/grpc
Diffstat (limited to 'test')
-rw-r--r--test/cpp/qps/smoke_test.cc3
1 files changed, 3 insertions, 0 deletions
diff --git a/test/cpp/qps/smoke_test.cc b/test/cpp/qps/smoke_test.cc
index e390730832..2c60a9997c 100644
--- a/test/cpp/qps/smoke_test.cc
+++ b/test/cpp/qps/smoke_test.cc
@@ -33,6 +33,8 @@
#include <grpc/support/log.h>
+#include <signal.h>
+
#include "test/cpp/qps/driver.h"
#include "test/cpp/qps/report.h"
@@ -136,6 +138,7 @@ static void RunQPS() {
} // namespace grpc
int main(int argc, char** argv) {
+ signal(SIGPIPE, SIG_IGN);
using namespace grpc::testing;
RunSynchronousStreamingPingPong();
RunSynchronousUnaryPingPong();