From: Nick Mathewson Date: Wed, 9 Sep 2015 17:23:32 +0000 (-0400) Subject: Bump default test-network bootstrap time to 35 sec (see 16953) X-Git-Tag: tor-0.2.7.3-rc~40 X-Git-Url: http://git.ipfire.org/gitweb.cgi?a=commitdiff_plain;h=6f35fd07c992db78e4d951566631c69b74e3531b;p=thirdparty%2Ftor.git Bump default test-network bootstrap time to 35 sec (see 16953) --- diff --git a/src/test/test-network.sh b/src/test/test-network.sh index 576fbed03b..05080e0c52 100755 --- a/src/test/test-network.sh +++ b/src/test/test-network.sh @@ -86,7 +86,7 @@ export CHUTNEY_TOR_GENCERT="${TOR_DIR}/src/tools/${tor_gencert_name}" # Sleep some, waiting for the network to bootstrap. # TODO: Add chutney command 'bootstrap-status' and use that instead. -BOOTSTRAP_TIME=${BOOTSTRAP_TIME:-30} +BOOTSTRAP_TIME=${BOOTSTRAP_TIME:-35} $ECHO_N "$myname: sleeping for $BOOTSTRAP_TIME seconds" n=$BOOTSTRAP_TIME; while [ $n -gt 0 ]; do sleep 1; n=$(expr $n - 1); $ECHO_N .