diff options
author | Craig Tiller <ctiller@google.com> | 2017-09-20 21:59:21 -0700 |
---|---|---|
committer | Craig Tiller <ctiller@google.com> | 2017-09-20 21:59:21 -0700 |
commit | c1f288dedbe8eeb9591b78e305a277ddeb1f9f39 (patch) | |
tree | 541ee0648068ed7f3a4896c3ca7bc84a190eb19a /test/core | |
parent | a42a22b2bec661c5c46c8f884a98f7c004cd5b3a (diff) |
Bug fixes, remove async e2e dependence on flow control size
Diffstat (limited to 'test/core')
-rw-r--r-- | test/core/transport/bdp_estimator_test.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/test/core/transport/bdp_estimator_test.c b/test/core/transport/bdp_estimator_test.c index a256eb3a4a..c672b53518 100644 --- a/test/core/transport/bdp_estimator_test.c +++ b/test/core/transport/bdp_estimator_test.c @@ -24,6 +24,7 @@ #include <grpc/support/string_util.h> #include <grpc/support/useful.h> #include <limits.h> +#include "src/core/lib/iomgr/timer_manager.h" #include "src/core/lib/support/string.h" #include "test/core/util/test_config.h" @@ -145,6 +146,7 @@ int main(int argc, char **argv) { grpc_test_init(argc, argv); gpr_now_impl = fake_gpr_now; grpc_init(); + grpc_timer_manager_set_threading(false); test_noop(); test_get_estimate_no_samples(); test_get_estimate_1_sample(); |