aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
authorGravatar Vijay Pai <vpai@google.com>2017-08-24 11:59:32 -0700
committerGravatar GitHub <noreply@github.com>2017-08-24 11:59:32 -0700
commitd2db4f179a8bd13d2c8b1d09057ba9f7cb0cb2f9 (patch)
tree1a0a7f4d5f6a150efcde008cf5bc5cbbea9f5e40
parent14a690ddcd65d6ba16d13ee0faa0777561627041 (diff)
parentc38955501b6fe7d3b97408a475fb301b4009775c (diff)
Merge pull request #12287 from vjpai/qps_cleanup2
QPS tests: move some internal includes to the right places
-rw-r--r--test/cpp/qps/client.h1
-rw-r--r--test/cpp/qps/client_async.cc1
-rw-r--r--test/cpp/qps/server.h1
-rw-r--r--test/cpp/qps/server_async.cc1
4 files changed, 2 insertions, 2 deletions
diff --git a/test/cpp/qps/client.h b/test/cpp/qps/client.h
index 6c4d92e859..0794a1569a 100644
--- a/test/cpp/qps/client.h
+++ b/test/cpp/qps/client.h
@@ -31,7 +31,6 @@
#include <grpc/support/log.h>
#include <grpc/support/time.h>
-#include "src/core/lib/surface/completion_queue.h"
#include "src/proto/grpc/testing/payloads.pb.h"
#include "src/proto/grpc/testing/services.grpc.pb.h"
diff --git a/test/cpp/qps/client_async.cc b/test/cpp/qps/client_async.cc
index 265f174cc5..97e2aef914 100644
--- a/test/cpp/qps/client_async.cc
+++ b/test/cpp/qps/client_async.cc
@@ -34,6 +34,7 @@
#include <grpc/support/cpu.h>
#include <grpc/support/log.h>
+#include "src/core/lib/surface/completion_queue.h"
#include "src/proto/grpc/testing/services.grpc.pb.h"
#include "test/cpp/qps/client.h"
#include "test/cpp/qps/usage_timer.h"
diff --git a/test/cpp/qps/server.h b/test/cpp/qps/server.h
index df27a4368e..3d6f347cae 100644
--- a/test/cpp/qps/server.h
+++ b/test/cpp/qps/server.h
@@ -26,7 +26,6 @@
#include <grpc/support/log.h>
#include <vector>
-#include "src/core/lib/surface/completion_queue.h"
#include "src/proto/grpc/testing/control.pb.h"
#include "src/proto/grpc/testing/messages.pb.h"
#include "test/core/end2end/data/ssl_test_data.h"
diff --git a/test/cpp/qps/server_async.cc b/test/cpp/qps/server_async.cc
index 8b00bcfeaf..4a82f98199 100644
--- a/test/cpp/qps/server_async.cc
+++ b/test/cpp/qps/server_async.cc
@@ -35,6 +35,7 @@
#include <grpc/support/host_port.h>
#include <grpc/support/log.h>
+#include "src/core/lib/surface/completion_queue.h"
#include "src/proto/grpc/testing/services.grpc.pb.h"
#include "test/core/util/test_config.h"
#include "test/cpp/qps/server.h"