aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp
diff options
context:
space:
mode:
authorGravatar Alexander Polcyn <apolcyn@google.com>2017-01-11 14:25:55 -0800
committerGravatar Alexander Polcyn <apolcyn@google.com>2017-01-11 14:25:55 -0800
commit6ff1ca4871d73dd018e33bfca0df896570c0d429 (patch)
tree98dad697264495020177109d25a116fbe4cb8b73 /test/cpp
parent8a0ef63dea1546a04fd00c6be7f4f223e3e559f1 (diff)
re-run generate project to build qps json driver
Diffstat (limited to 'test/cpp')
-rw-r--r--test/cpp/qps/client.h1
-rw-r--r--test/cpp/qps/driver.cc4
-rw-r--r--test/cpp/qps/server.h1
3 files changed, 2 insertions, 4 deletions
diff --git a/test/cpp/qps/client.h b/test/cpp/qps/client.h
index 3018c21f32..ae7264c9c1 100644
--- a/test/cpp/qps/client.h
+++ b/test/cpp/qps/client.h
@@ -51,7 +51,6 @@
#include "test/cpp/qps/histogram.h"
#include "test/cpp/qps/interarrival.h"
-#include "test/cpp/qps/limit_cores.h"
#include "test/cpp/qps/usage_timer.h"
#include "test/cpp/util/create_test_channel.h"
diff --git a/test/cpp/qps/driver.cc b/test/cpp/qps/driver.cc
index 42722b7e9d..7494ced460 100644
--- a/test/cpp/qps/driver.cc
+++ b/test/cpp/qps/driver.cc
@@ -263,7 +263,7 @@ std::unique_ptr<ScenarioResult> RunScenario(
ServerConfig server_config = initial_server_config;
if(server_config.core_limit() != 0) {
- gpr_log(GPR_WARN, "server config core limit is set but ignored by driver");
+ gpr_log(GPR_ERROR, "server config core limit is set but ignored by driver");
}
ServerArgs args;
@@ -309,7 +309,7 @@ std::unique_ptr<ScenarioResult> RunScenario(
ClientConfig per_client_config = client_config;
if(initial_client_config.core_limit() != 0) {
- gpr_log(GPR_WARN, "client config core limit set but ignored");
+ gpr_log(GPR_ERROR, "client config core limit set but ignored");
}
// Reduce channel count so that total channels specified is held regardless
diff --git a/test/cpp/qps/server.h b/test/cpp/qps/server.h
index 5f4c34c9ad..821d5935be 100644
--- a/test/cpp/qps/server.h
+++ b/test/cpp/qps/server.h
@@ -42,7 +42,6 @@
#include "src/proto/grpc/testing/messages.grpc.pb.h"
#include "test/core/end2end/data/ssl_test_data.h"
#include "test/core/util/port.h"
-#include "test/cpp/qps/limit_cores.h"
#include "test/cpp/qps/usage_timer.h"
namespace grpc {