]> git.ipfire.org Git - thirdparty/tor.git/commitdiff
Merge remote-tracking branches 'teor/issue-13161-test-network' and 'teor/issue-13161...
authorNick Mathewson <nickm@torproject.org>
Wed, 8 Oct 2014 19:46:29 +0000 (15:46 -0400)
committerNick Mathewson <nickm@torproject.org>
Wed, 8 Oct 2014 19:46:29 +0000 (15:46 -0400)
1  2  3 
doc/tor.1.txt
src/test/test-network.sh

diff --cc doc/tor.1.txt
Simple merge
index fb33842f3218eb0aa85a7bcdee43ef20ea502aec,4fe4e639fef0d5f91465135a867ed1399797eacb,7b59864166a54bace15b91316817333442ceb73f..d28fbde80f4489ce17e9571ee8d6fc0b44136e46
@@@@ -39,14 -45,9 -39,9 +45,14 @@@@ PATH="$TOR_DIR/src/or:$TOR_DIR/src/tool
   
   # Sleep some, waiting for the network to bootstrap.
   # TODO: Add chutney command 'bootstrap-status' and use that instead.
- -BOOTSTRAP_TIME=18
- -echo -n "$myname: sleeping for $BOOTSTRAP_TIME seconds"
+ +BOOTSTRAP_TIME=${BOOTSTRAP_TIME:-18}
+ +$ECHO_N "$myname: sleeping for $BOOTSTRAP_TIME seconds"
   n=$BOOTSTRAP_TIME; while [ $n -gt 0 ]; do
- -    sleep 1; n=$(expr $n - 1); echo -n .
+ +    sleep 1; n=$(expr $n - 1); $ECHO_N .
   done; echo ""
   ./chutney verify $CHUTNEY_NETWORK
 ++VERIFY_EXIT_STATUS=$?
 ++# work around a bug/feature in make -j2 (or more)
 ++# where make hangs if any child processes are still alive
 ++./chutney stop $CHUTNEY_NETWORK
 ++exit $VERIFY_EXIT_STATUS