aboutsummaryrefslogtreecommitdiffhomepage
path: root/test/core/util/test_config.c
diff options
context:
space:
mode:
Diffstat (limited to 'test/core/util/test_config.c')
-rw-r--r--test/core/util/test_config.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/test/core/util/test_config.c b/test/core/util/test_config.c
index be69fcf675..20ab67ec15 100644
--- a/test/core/util/test_config.c
+++ b/test/core/util/test_config.c
@@ -50,8 +50,9 @@ static int seed(void) { return _getpid(); }
void grpc_test_init(int argc, char **argv) {
gpr_log(GPR_DEBUG, "test slowdown: machine=%f build=%f total=%f",
- GRPC_TEST_SLOWDOWN_MACHINE_FACTOR, GRPC_TEST_SLOWDOWN_BUILD_FACTOR,
- GRPC_TEST_SLOWDOWN_FACTOR);
+ (double)GRPC_TEST_SLOWDOWN_MACHINE_FACTOR,
+ (double)GRPC_TEST_SLOWDOWN_BUILD_FACTOR,
+ (double)GRPC_TEST_SLOWDOWN_FACTOR);
/* seed rng with pid, so we don't end up with the same random numbers as a
concurrently running test binary */
srand(seed());