diff options
author | Vijay Pai <vpai@google.com> | 2018-01-25 15:38:20 -0800 |
---|---|---|
committer | Vijay Pai <vpai@google.com> | 2018-01-25 20:11:38 -0800 |
commit | 8a99fdb57e564f2166f5f83e50baa4c47e9a3f8d (patch) | |
tree | 2b64f9540e493ead5e08bf9680e46c2c1f5d8828 /test/core/bad_ssl | |
parent | 5e82dddc056bd488e0ba1ba0057247ab23e442d4 (diff) |
Move cmdline and subprocess from public gpr to test/core/util
Diffstat (limited to 'test/core/bad_ssl')
-rw-r--r-- | test/core/bad_ssl/bad_ssl_test.cc | 2 | ||||
-rw-r--r-- | test/core/bad_ssl/server_common.cc | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/test/core/bad_ssl/bad_ssl_test.cc b/test/core/bad_ssl/bad_ssl_test.cc index 8a7960b5ed..1979ecbb17 100644 --- a/test/core/bad_ssl/bad_ssl_test.cc +++ b/test/core/bad_ssl/bad_ssl_test.cc @@ -25,11 +25,11 @@ #include <grpc/support/host_port.h> #include <grpc/support/log.h> #include <grpc/support/string_util.h> -#include <grpc/support/subprocess.h> #include "src/core/lib/gpr/env.h" #include "src/core/lib/gpr/string.h" #include "test/core/end2end/cq_verifier.h" #include "test/core/util/port.h" +#include "test/core/util/subprocess.h" #include "test/core/util/test_config.h" static void* tag(intptr_t t) { return (void*)t; } diff --git a/test/core/bad_ssl/server_common.cc b/test/core/bad_ssl/server_common.cc index 08842b8350..809539aff3 100644 --- a/test/core/bad_ssl/server_common.cc +++ b/test/core/bad_ssl/server_common.cc @@ -16,11 +16,11 @@ * */ -#include <grpc/support/cmdline.h> #include <grpc/support/log.h> #include <signal.h> #include "test/core/bad_ssl/server_common.h" +#include "test/core/util/cmdline.h" #include "test/core/util/test_config.h" /* Common server implementation details for all servers in servers/. |