tor

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

commit 7b27d98eaea3bbbcf367fdf87b3dabbc28ca1f9c
parent d30e47fd4e1ff01171319ef9b955a7495510a768
Author: rl1987 <rl1987@sdf.lonestar.org>
Date:   Sun, 19 Aug 2018 21:33:18 +0300

Actually, just disable test_rebind.sh on Appveyor

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

diff --git a/src/test/test_rebind.sh b/src/test/test_rebind.sh @@ -2,12 +2,14 @@ set -x -UNAME_OS=`uname -s | cut -d_ -f1` +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 + if test "$APPVEYOR" = 'True'; then + echo "This test is disabled on Windows CI, as it requires firewall examptions. Skipping." >&2 + exit 77 + fi fi exitcode=0