From 294c2bd19a354b7afad58660666003026dddd0f0 Mon Sep 17 00:00:00 2001 From: Jan Tattermusch Date: Thu, 26 May 2022 18:27:53 +0200 Subject: [PATCH] Revert "test: increase test slowdown factor on MacOS (#29781)" (#29794) This reverts commit b29c26d6b870a71a251af930a54edc97ed0d5324. --- test/core/util/test_config.cc | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/test/core/util/test_config.cc b/test/core/util/test_config.cc index b9277724822..950c213d886 100644 --- a/test/core/util/test_config.cc +++ b/test/core/util/test_config.cc @@ -47,12 +47,6 @@ int64_t g_fixture_slowdown_factor = 1; int64_t g_poller_slowdown_factor = 1; -#if GPR_APPLE -static const int64_t kPlatformSlowdownFactor = 3; -#else -static const int64_t kPlatformSlowdownFactor = 1; -#endif - #if GPR_GETPID_IN_UNISTD_H #include static unsigned seed(void) { return static_cast(getpid()); } @@ -81,7 +75,7 @@ int64_t grpc_test_sanitizer_slowdown_factor() { int64_t grpc_test_slowdown_factor() { return grpc_test_sanitizer_slowdown_factor() * g_fixture_slowdown_factor * - g_poller_slowdown_factor * kPlatformSlowdownFactor; + g_poller_slowdown_factor; } gpr_timespec grpc_timeout_seconds_to_deadline(int64_t time_s) {