diff options
author | Craig Tiller <craig.tiller@gmail.com> | 2015-01-23 12:54:05 -0800 |
---|---|---|
committer | Craig Tiller <craig.tiller@gmail.com> | 2015-01-23 12:54:05 -0800 |
commit | 485d77628d0ce8889a420576d5bc41ccbbf48963 (patch) | |
tree | b657a3ac344f57508792269e14504578969a7e80 /test | |
parent | 1fa4e15f7e935b06f1fc6bb3613ab1eab7028c61 (diff) |
Move string.h to internal code
Diffstat (limited to 'test')
-rw-r--r-- | test/core/echo/echo_test.c | 2 | ||||
-rw-r--r-- | test/core/echo/server.c | 2 | ||||
-rw-r--r-- | test/core/end2end/cq_verifier.c | 2 | ||||
-rw-r--r-- | test/core/fling/fling_stream_test.c | 2 | ||||
-rw-r--r-- | test/core/fling/fling_test.c | 2 | ||||
-rw-r--r-- | test/core/security/credentials_test.c | 2 | ||||
-rw-r--r-- | test/core/support/string_test.c | 2 | ||||
-rw-r--r-- | test/core/transport/chttp2/bin_encoder_test.c | 2 | ||||
-rw-r--r-- | test/core/transport/chttp2/stream_encoder_test.c | 2 | ||||
-rw-r--r-- | test/core/transport/transport_end2end_tests.c | 2 |
10 files changed, 10 insertions, 10 deletions
diff --git a/test/core/echo/echo_test.c b/test/core/echo/echo_test.c index 16d381fb65..6449b2414f 100644 --- a/test/core/echo/echo_test.c +++ b/test/core/echo/echo_test.c @@ -42,10 +42,10 @@ #include <sys/wait.h> #include "src/core/iomgr/socket_utils_posix.h" +#include "src/core/support/string.h" #include <grpc/support/alloc.h> #include <grpc/support/host_port.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include "test/core/util/port.h" int test_client(const char *root, const char *host, int port) { diff --git a/test/core/echo/server.c b/test/core/echo/server.c index 35f118dc9b..57b083779c 100644 --- a/test/core/echo/server.c +++ b/test/core/echo/server.c @@ -39,11 +39,11 @@ #include <string.h> #include <time.h> +#include "src/core/support/string.h" #include "test/core/util/test_config.h" #include <grpc/support/alloc.h> #include <grpc/support/host_port.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include <grpc/support/time.h> #include "test/core/util/port.h" diff --git a/test/core/end2end/cq_verifier.c b/test/core/end2end/cq_verifier.c index 7a7f197907..37a7f7e32c 100644 --- a/test/core/end2end/cq_verifier.c +++ b/test/core/end2end/cq_verifier.c @@ -45,10 +45,10 @@ #include <string.h> #include "src/core/surface/event_string.h" +#include "src/core/support/string.h" #include <grpc/byte_buffer.h> #include <grpc/support/alloc.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include <grpc/support/time.h> #include <grpc/support/useful.h> diff --git a/test/core/fling/fling_stream_test.c b/test/core/fling/fling_stream_test.c index f6fe69824b..7f52fb1bad 100644 --- a/test/core/fling/fling_stream_test.c +++ b/test/core/fling/fling_stream_test.c @@ -41,9 +41,9 @@ #include <sys/types.h> #include <sys/wait.h> +#include "src/core/support/string.h" #include <grpc/support/alloc.h> #include <grpc/support/host_port.h> -#include <grpc/support/string.h> #include "test/core/util/port.h" int main(int argc, char **argv) { diff --git a/test/core/fling/fling_test.c b/test/core/fling/fling_test.c index 4607aa5f98..b2272f20c8 100644 --- a/test/core/fling/fling_test.c +++ b/test/core/fling/fling_test.c @@ -43,7 +43,7 @@ #include <grpc/support/alloc.h> #include <grpc/support/host_port.h> -#include <grpc/support/string.h> +#include "src/core/support/string.h" #include "test/core/util/port.h" int main(int argc, char **argv) { diff --git a/test/core/security/credentials_test.c b/test/core/security/credentials_test.c index 9c60f4c233..ec21e0d42f 100644 --- a/test/core/security/credentials_test.c +++ b/test/core/security/credentials_test.c @@ -37,9 +37,9 @@ #include "src/core/httpcli/httpcli.h" #include "src/core/security/json_token.h" +#include "src/core/support/string.h" #include <grpc/support/alloc.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include <grpc/support/time.h> #include "test/core/util/test_config.h" #include <openssl/rsa.h> diff --git a/test/core/support/string_test.c b/test/core/support/string_test.c index e87a606aba..a01ec6f87f 100644 --- a/test/core/support/string_test.c +++ b/test/core/support/string_test.c @@ -31,7 +31,7 @@ * */ -#include <grpc/support/string.h> +#include "src/core/support/string.h" #include <stddef.h> #include <stdlib.h> diff --git a/test/core/transport/chttp2/bin_encoder_test.c b/test/core/transport/chttp2/bin_encoder_test.c index ea24f5cbd7..048ed7edd3 100644 --- a/test/core/transport/chttp2/bin_encoder_test.c +++ b/test/core/transport/chttp2/bin_encoder_test.c @@ -35,9 +35,9 @@ #include <string.h> +#include "src/core/support/string.h" #include <grpc/support/alloc.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> static int all_ok = 1; diff --git a/test/core/transport/chttp2/stream_encoder_test.c b/test/core/transport/chttp2/stream_encoder_test.c index cebc2634fb..eb0f688f58 100644 --- a/test/core/transport/chttp2/stream_encoder_test.c +++ b/test/core/transport/chttp2/stream_encoder_test.c @@ -35,10 +35,10 @@ #include <stdio.h> +#include "src/core/support/string.h" #include "src/core/transport/chttp2/hpack_parser.h" #include <grpc/support/alloc.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include "test/core/util/parse_hexstring.h" #include "test/core/util/slice_splitter.h" #include "test/core/util/test_config.h" diff --git a/test/core/transport/transport_end2end_tests.c b/test/core/transport/transport_end2end_tests.c index 5d26ef53b9..8e9b4a2cc9 100644 --- a/test/core/transport/transport_end2end_tests.c +++ b/test/core/transport/transport_end2end_tests.c @@ -37,10 +37,10 @@ #include <stdio.h> #include <string.h> +#include "src/core/support/string.h" #include "src/core/transport/transport.h" #include <grpc/support/alloc.h> #include <grpc/support/log.h> -#include <grpc/support/string.h> #include <grpc/support/thd.h> #include <grpc/support/useful.h> |