aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/async_streaming_ping_pong_test.cc
diff options
context:
space:
mode:
authorGravatar vjpai <vpai@google.com>2015-11-04 14:49:17 -0800
committerGravatar vjpai <vpai@google.com>2015-11-04 14:49:17 -0800
commitfba20c987d4eedaa039a828ec7c6ab3fed99ea7d (patch)
treea147ebf4d2352b4a2232e78b57d3b5347469cfd5 /test/cpp/qps/async_streaming_ping_pong_test.cc
parent1f6f02a6f428cc2d58f025337ed7aba0e0ae7c80 (diff)
Address some review comments about signal and restoring qps_test_with_poll
Make payloads respect the new defaults
Diffstat (limited to 'test/cpp/qps/async_streaming_ping_pong_test.cc')
-rw-r--r--test/cpp/qps/async_streaming_ping_pong_test.cc6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/cpp/qps/async_streaming_ping_pong_test.cc b/test/cpp/qps/async_streaming_ping_pong_test.cc
index 9aa7f88fa4..9fef93a70f 100644
--- a/test/cpp/qps/async_streaming_ping_pong_test.cc
+++ b/test/cpp/qps/async_streaming_ping_pong_test.cc
@@ -35,8 +35,6 @@
#include <grpc/support/log.h>
-#include <signal.h>
-
#include "test/cpp/qps/driver.h"
#include "test/cpp/qps/report.h"
#include "test/cpp/util/benchmark_config.h"
@@ -54,9 +52,6 @@ static void RunAsyncStreamingPingPong() {
client_config.set_client_type(ASYNC_CLIENT);
client_config.set_outstanding_rpcs_per_channel(1);
client_config.set_client_channels(1);
- client_config.mutable_payload_config()
- ->mutable_simple_params()
- ->set_resp_size(1);
client_config.set_async_client_threads(1);
client_config.set_rpc_type(STREAMING);
client_config.mutable_load_params()->mutable_closed_loop();
@@ -78,7 +73,6 @@ static void RunAsyncStreamingPingPong() {
int main(int argc, char** argv) {
grpc::testing::InitBenchmark(&argc, &argv, true);
- signal(SIGPIPE, SIG_IGN);
grpc::testing::RunAsyncStreamingPingPong();
return 0;
}