diff options
author | Craig Tiller <ctiller@google.com> | 2015-10-19 15:18:24 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2015-10-19 15:18:24 -0700 |
commit | e2a1bf46f975a47497977a19a556dd9f07ae944a (patch) | |
tree | 3637b4ab8651899d4f190194a87dcf2d04a9d34a /test/core | |
parent | 8093b57a98bfc6b685cb3302e3194f7e2aef14e3 (diff) | |
parent | 661ad7fc85b0603c9e554b82851c102b84375074 (diff) |
Merge pull request #3726 from dgquintas/iomgr_executor
Introducing grpc_executor, for all your threading needs
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/iomgr/resolve_address_test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/iomgr/resolve_address_test.c b/test/core/iomgr/resolve_address_test.c index 1c95a9960e..56ce091a88 100644 --- a/test/core/iomgr/resolve_address_test.c +++ b/test/core/iomgr/resolve_address_test.c @@ -32,7 +32,7 @@ */ #include "src/core/iomgr/resolve_address.h" -#include "src/core/iomgr/iomgr.h" +#include "src/core/iomgr/executor.h" #include <grpc/support/log.h> #include <grpc/support/sync.h> #include <grpc/support/time.h> @@ -125,6 +125,7 @@ static void test_unparseable_hostports(void) { int main(int argc, char **argv) { grpc_test_init(argc, argv); + grpc_executor_init(); grpc_iomgr_init(); test_localhost(); test_default_port(); @@ -134,5 +135,6 @@ int main(int argc, char **argv) { test_invalid_ip_addresses(); test_unparseable_hostports(); grpc_iomgr_shutdown(); + grpc_executor_shutdown(); return 0; } |