diff options
author | Sree Kuchibhotla <sreek@google.com> | 2017-05-02 14:15:12 -0700 |
---|---|---|
committer | Sree Kuchibhotla <sreek@google.com> | 2017-05-02 15:32:22 -0700 |
commit | d4fc32eacd07a5b9ae9573d25dbee819266d761a (patch) | |
tree | af758b6a89265e777872460e0009716369634bb1 /test/core/iomgr | |
parent | ae95edb515c72a51655e4164f3e2a96e4e33677c (diff) |
New epoll-based polling engine with dedicated poller threads
Diffstat (limited to 'test/core/iomgr')
-rw-r--r-- | test/core/iomgr/pollset_set_test.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/test/core/iomgr/pollset_set_test.c b/test/core/iomgr/pollset_set_test.c index 3a9d459579..89854407b1 100644 --- a/test/core/iomgr/pollset_set_test.c +++ b/test/core/iomgr/pollset_set_test.c @@ -449,7 +449,9 @@ int main(int argc, char **argv) { grpc_test_init(argc, argv); grpc_iomgr_init(); - if (poll_strategy != NULL && strcmp(poll_strategy, "epoll") == 0) { + if (poll_strategy != NULL && + (strcmp(poll_strategy, "epoll") == 0 || + strcmp(poll_strategy, "epoll-threadpool") == 0)) { pollset_set_test_basic(); pollset_set_test_dup_fds(); pollset_set_test_empty_pollset(); |