Skip to content
Snippets Groups Projects
Commit a4660cba authored by Craig Tiller's avatar Craig Tiller
Browse files

Merge branch 'uberpoll' of github.com:ctiller/grpc into uberpoll

parents 15285fbb cdc97a12
No related branches found
No related tags found
No related merge requests found
......@@ -403,6 +403,7 @@ int main(int argc, char **argv) {
const char *poll_strategy = NULL;
grpc_test_init(argc, argv);
grpc_iomgr_init();
grpc_iomgr_start();
poll_strategy = grpc_get_poll_strategy_name();
if (poll_strategy != NULL && strcmp(poll_strategy, "epollsig") == 0) {
......
......@@ -46,6 +46,7 @@ int main(int argc, char **argv) {
grpc_test_init(argc, argv);
grpc_iomgr_init();
grpc_iomgr_start();
/* set max # of file descriptors to a low value, and
verify we can create and destroy many more than this number
......
......@@ -543,6 +543,7 @@ int main(int argc, char **argv) {
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
grpc_test_init(argc, argv);
grpc_iomgr_init();
grpc_iomgr_start();
g_pollset = gpr_zalloc(grpc_pollset_size());
grpc_pollset_init(g_pollset, &g_mu);
test_grpc_fd();
......
......@@ -448,6 +448,7 @@ int main(int argc, char **argv) {
grpc_exec_ctx exec_ctx = GRPC_EXEC_CTX_INIT;
grpc_test_init(argc, argv);
grpc_iomgr_init();
grpc_iomgr_start();
if (poll_strategy != NULL &&
(strcmp(poll_strategy, "epoll") == 0 ||
......
......@@ -176,6 +176,7 @@ int main(int argc, char **argv) {
grpc_test_init(argc, argv);
grpc_executor_init();
grpc_iomgr_init();
grpc_iomgr_start();
test_unix_socket();
test_unix_socket_path_name_too_long();
{
......
......@@ -265,6 +265,7 @@ int main(int argc, char **argv) {
grpc_test_init(argc, argv);
grpc_executor_init();
grpc_iomgr_init();
grpc_iomgr_start();
test_localhost();
test_default_port();
test_non_numeric_default_port();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment