aboutsummaryrefslogtreecommitdiffhomepage
path: root/test
diff options
context:
space:
mode:
authorGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-27 09:25:51 -0800
committerGravatar Craig Tiller <craig.tiller@gmail.com>2015-02-27 09:25:51 -0800
commit8451e87cedfda3538e004ff292abc7749fcd9cd2 (patch)
tree9125b8e43f7560c961c82daff6ed271e757d401b /test
parentf6901be8cdba766d0bfe966305312b507ec0d1ce (diff)
Extend timeouts for Travis 2x
Diffstat (limited to 'test')
-rw-r--r--test/core/util/test_config.c4
1 files changed, 4 insertions, 0 deletions
diff --git a/test/core/util/test_config.c b/test/core/util/test_config.c
index 1c46407311..1f0f0175b1 100644
--- a/test/core/util/test_config.c
+++ b/test/core/util/test_config.c
@@ -34,6 +34,7 @@
#include "test/core/util/test_config.h"
#include <grpc/support/port_platform.h>
+#include <grpc/support/log.h>
#include <stdlib.h>
#include <signal.h>
@@ -52,6 +53,9 @@ void grpc_test_init(int argc, char **argv) {
/* disable SIGPIPE */
signal(SIGPIPE, SIG_IGN);
#endif
+ 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);
/* seed rng with pid, so we don't end up with the same random numbers as a
concurrently running test binary */
srand(seed());