diff options
Diffstat (limited to 'test/cpp/qps')
-rw-r--r-- | test/cpp/qps/smoke_test.cc | 3 |
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(); |