mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-13 06:33:44 +01:00
Fix all instances of SC2166 in test-network.sh
This commit is contained in:
parent
d9010c5b67
commit
7341d9acdc
@ -5,7 +5,7 @@
|
|||||||
# If we already know CHUTNEY_PATH, don't bother with argument parsing
|
# If we already know CHUTNEY_PATH, don't bother with argument parsing
|
||||||
TEST_NETWORK="$CHUTNEY_PATH/tools/test-network.sh"
|
TEST_NETWORK="$CHUTNEY_PATH/tools/test-network.sh"
|
||||||
# Call the chutney version of this script, if it exists, and we can find it
|
# Call the chutney version of this script, if it exists, and we can find it
|
||||||
if [ -d "$CHUTNEY_PATH" -a -x "$TEST_NETWORK" ]; then
|
if [ -d "$CHUTNEY_PATH" ] && [ -x "$TEST_NETWORK" ]; then
|
||||||
# we can't produce any output, because we might be --quiet
|
# we can't produce any output, because we might be --quiet
|
||||||
# this preserves arguments with spaces correctly
|
# this preserves arguments with spaces correctly
|
||||||
exec "$TEST_NETWORK" "$@"
|
exec "$TEST_NETWORK" "$@"
|
||||||
@ -52,12 +52,12 @@ done
|
|||||||
# - if $PWD looks like a tor build directory, set it to $PWD, or
|
# - if $PWD looks like a tor build directory, set it to $PWD, or
|
||||||
# - unset $TOR_DIR, and let chutney fall back to finding tor binaries in $PATH
|
# - unset $TOR_DIR, and let chutney fall back to finding tor binaries in $PATH
|
||||||
if [ ! -d "$TOR_DIR" ]; then
|
if [ ! -d "$TOR_DIR" ]; then
|
||||||
if [ -d "$BUILDDIR/src/core/or" -a -d "$BUILDDIR/src/tools" ]; then
|
if [ -d "$BUILDDIR/src/core/or" ] && [ -d "$BUILDDIR/src/tools" ]; then
|
||||||
# Choose the build directory
|
# Choose the build directory
|
||||||
# But only if it looks like one
|
# But only if it looks like one
|
||||||
$ECHO "$myname: \$TOR_DIR not set, trying \$BUILDDIR"
|
$ECHO "$myname: \$TOR_DIR not set, trying \$BUILDDIR"
|
||||||
TOR_DIR="$BUILDDIR"
|
TOR_DIR="$BUILDDIR"
|
||||||
elif [ -d "$PWD/src/core/or" -a -d "$PWD/src/tools" ]; then
|
elif [ -d "$PWD/src/core/or" ] && [ -d "$PWD/src/tools" ]; then
|
||||||
# Guess the tor directory is the current directory
|
# Guess the tor directory is the current directory
|
||||||
# But only if it looks like one
|
# But only if it looks like one
|
||||||
$ECHO "$myname: \$TOR_DIR not set, trying \$PWD"
|
$ECHO "$myname: \$TOR_DIR not set, trying \$PWD"
|
||||||
@ -73,12 +73,12 @@ fi
|
|||||||
# - if $PWD looks like a chutney directory, set it to $PWD, or
|
# - if $PWD looks like a chutney directory, set it to $PWD, or
|
||||||
# - set it based on $TOR_DIR, expecting chutney to be next to tor, or
|
# - set it based on $TOR_DIR, expecting chutney to be next to tor, or
|
||||||
# - fail and tell the user how to clone the chutney repository
|
# - fail and tell the user how to clone the chutney repository
|
||||||
if [ ! -d "$CHUTNEY_PATH" -o ! -x "$CHUTNEY_PATH/chutney" ]; then
|
if [ ! -d "$CHUTNEY_PATH" ] || [ ! -x "$CHUTNEY_PATH/chutney" ]; then
|
||||||
if [ -x "$PWD/chutney" ]; then
|
if [ -x "$PWD/chutney" ]; then
|
||||||
$ECHO "$myname: \$CHUTNEY_PATH not valid, trying \$PWD"
|
$ECHO "$myname: \$CHUTNEY_PATH not valid, trying \$PWD"
|
||||||
CHUTNEY_PATH="$PWD"
|
CHUTNEY_PATH="$PWD"
|
||||||
elif [ -d "$TOR_DIR" -a -d "$TOR_DIR/../chutney" -a \
|
elif [ -d "$TOR_DIR" ] && [ -d "$TOR_DIR/../chutney" ] && \
|
||||||
-x "$TOR_DIR/../chutney/chutney" ]; then
|
[ -x "$TOR_DIR/../chutney/chutney" ]; then
|
||||||
$ECHO "$myname: \$CHUTNEY_PATH not valid, trying \$TOR_DIR/../chutney"
|
$ECHO "$myname: \$CHUTNEY_PATH not valid, trying \$TOR_DIR/../chutney"
|
||||||
CHUTNEY_PATH="$TOR_DIR/../chutney"
|
CHUTNEY_PATH="$TOR_DIR/../chutney"
|
||||||
else
|
else
|
||||||
@ -94,7 +94,7 @@ fi
|
|||||||
|
|
||||||
TEST_NETWORK="$CHUTNEY_PATH/tools/test-network.sh"
|
TEST_NETWORK="$CHUTNEY_PATH/tools/test-network.sh"
|
||||||
# Call the chutney version of this script, if it exists, and we can find it
|
# Call the chutney version of this script, if it exists, and we can find it
|
||||||
if [ -d "$CHUTNEY_PATH" -a -x "$TEST_NETWORK" ]; then
|
if [ -d "$CHUTNEY_PATH" ] && [ -x "$TEST_NETWORK" ]; then
|
||||||
$ECHO "$myname: Calling newer chutney script $TEST_NETWORK"
|
$ECHO "$myname: Calling newer chutney script $TEST_NETWORK"
|
||||||
# this may fail if some arguments have spaces in them
|
# this may fail if some arguments have spaces in them
|
||||||
# if so, set CHUTNEY_PATH before calling test-network.sh, and spaces
|
# if so, set CHUTNEY_PATH before calling test-network.sh, and spaces
|
||||||
|
Loading…
Reference in New Issue
Block a user