diff options
author | Craig Tiller <ctiller@google.com> | 2016-11-28 09:36:17 -0800 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2016-11-28 09:36:17 -0800 |
commit | 96583a39a9a3a929a5abb9774e3896536e537dd0 (patch) | |
tree | 8bd2769ef7805901734af90b9e961fbfe96e4dc2 | |
parent | f2876ea1e0bbb3639007856cf7ea528a19d2d965 (diff) |
Remove file dependency to simplify build graph
-rw-r--r-- | test/core/util/test_config.c | 3 |
1 files changed, 0 insertions, 3 deletions
diff --git a/test/core/util/test_config.c b/test/core/util/test_config.c index 046e4beed1..8e02f41b56 100644 --- a/test/core/util/test_config.c +++ b/test/core/util/test_config.c @@ -41,7 +41,6 @@ #include <grpc/support/alloc.h> #include <grpc/support/log.h> -#include "src/core/lib/iomgr/port.h" #include "src/core/lib/support/env.h" #include "src/core/lib/support/string.h" @@ -280,7 +279,6 @@ static void install_crash_handler() {} void grpc_test_init(int argc, char **argv) { install_crash_handler(); -#ifdef GRPC_POSIX_SOCKET { /* poll-cv poll strategy runs much more slowly than anything else */ char *s = gpr_getenv("GRPC_POLL_STRATEGY"); if (s != NULL && 0 == strcmp(s, "poll-cv")) { @@ -288,7 +286,6 @@ void grpc_test_init(int argc, char **argv) { } gpr_free(s); } -#endif gpr_log(GPR_DEBUG, "test slowdown: machine=%f build=%f poll=%f total=%f", (double)GRPC_TEST_SLOWDOWN_MACHINE_FACTOR, (double)GRPC_TEST_SLOWDOWN_BUILD_FACTOR, g_poller_slowdown_factor, |