Remove from poll-cv comments too

pull/18298/head
Yash Tibrewal 6 years ago
parent 620d80d817
commit 6b45cea2f0
  1. 2
      src/core/lib/iomgr/ev_poll_posix.cc
  2. 3
      test/core/end2end/tests/keepalive_timeout.cc
  3. 2
      test/cpp/end2end/BUILD

@ -125,7 +125,7 @@ struct grpc_fd {
grpc_fork_fd_list* fork_fd_list;
};
/* True when GRPC_ENABLE_FORK_SUPPORT=1. We do not support fork with poll-cv */
/* True when GRPC_ENABLE_FORK_SUPPORT=1. */
static bool track_fds_for_fork = false;
/* Only used when GRPC_ENABLE_FORK_SUPPORT=1 */

@ -226,8 +226,7 @@ static void test_keepalive_timeout(grpc_end2end_test_config config) {
* that the keepalive ping is never sent. */
static void test_read_delays_keepalive(grpc_end2end_test_config config) {
char* poller = gpr_getenv("GRPC_POLL_STRATEGY");
/* It is hard to get the timing right for the polling engines poll and poll-cv
*/
/* It is hard to get the timing right for the polling engine poll. */
if (poller != nullptr && (0 == strcmp(poller, "poll"))) {
gpr_free(poller);
return;

@ -242,7 +242,7 @@ grpc_cc_test(
grpc_cc_test(
name = "end2end_test",
size = "large", # with poll-cv this takes long, see #17493
size = "large",
deps = [
":end2end_test_lib",
],

Loading…
Cancel
Save