aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/cpp/qps/server.cc
diff options
context:
space:
mode:
Diffstat (limited to 'test/cpp/qps/server.cc')
-rw-r--r--test/cpp/qps/server.cc11
1 files changed, 9 insertions, 2 deletions
diff --git a/test/cpp/qps/server.cc b/test/cpp/qps/server.cc
index 6a30d5d8d4..8e136349a1 100644
--- a/test/cpp/qps/server.cc
+++ b/test/cpp/qps/server.cc
@@ -36,7 +36,7 @@
#include <sys/signal.h>
#include <thread>
-#include <google/gflags.h>
+#include <gflags/gflags.h>
#include <grpc/support/alloc.h>
#include <grpc/support/host_port.h>
#include <grpc++/config.h>
@@ -68,6 +68,13 @@ using grpc::testing::StatsRequest;
using grpc::testing::TestService;
using grpc::Status;
+// In some distros, gflags is in the namespace google, and in some others,
+// in gflags. This hack is enabling us to find both.
+namespace google { }
+namespace gflags { }
+using namespace google;
+using namespace gflags;
+
static bool got_sigint = false;
static void sigint_handler(int x) { got_sigint = 1; }
@@ -149,7 +156,7 @@ static void RunServer() {
int main(int argc, char** argv) {
grpc_init();
- google::ParseCommandLineFlags(&argc, &argv, true);
+ ParseCommandLineFlags(&argc, &argv, true);
signal(SIGINT, sigint_handler);