tor

The Tor anonymity network
git clone https://git.dasho.dev/tor.git
Log | Files | Refs | README | LICENSE

commit d30e47fd4e1ff01171319ef9b955a7495510a768
parent 5a11670fcaad0a58de48425ba80510effbe35628
Author: rl1987 <rl1987@sdf.lonestar.org>
Date:   Sat, 18 Aug 2018 16:29:46 +0300

Disable test_rebind.sh on Windows

Diffstat:
Msrc/test/test_rebind.sh | 8++++++++
1 file changed, 8 insertions(+), 0 deletions(-)

diff --git a/src/test/test_rebind.sh b/src/test/test_rebind.sh @@ -2,6 +2,14 @@ set -x +UNAME_OS=`uname -s | cut -d_ -f1` +if test "$UNAME_OS" = 'CYGWIN' || \ + test "$UNAME_OS" = 'MSYS' || \ + test "$UNAME_OS" = 'MINGW'; then + echo "This test is disabled on Windows CI, as it requires firewall examptions. Skipping." >&2 + exit 77 +fi + exitcode=0 "${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/test_rebind.py" "${TESTING_TOR_BINARY}" || exitcode=1