diff options
author | rl1987 <rl1987@sdf.lonestar.org> | 2018-08-19 21:33:18 +0300 |
---|---|---|
committer | Nick Mathewson <nickm@torproject.org> | 2018-09-12 09:06:16 -0400 |
commit | 7b27d98eaea3bbbcf367fdf87b3dabbc28ca1f9c (patch) | |
tree | a766cccbd597dd434c6c695d7dcb30ba7386642f /src/test/test_rebind.sh | |
parent | d30e47fd4e1ff01171319ef9b955a7495510a768 (diff) | |
download | tor-7b27d98eaea3bbbcf367fdf87b3dabbc28ca1f9c.tar.gz tor-7b27d98eaea3bbbcf367fdf87b3dabbc28ca1f9c.zip |
Actually, just disable test_rebind.sh on Appveyor
Diffstat (limited to 'src/test/test_rebind.sh')
-rwxr-xr-x | src/test/test_rebind.sh | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/test/test_rebind.sh b/src/test/test_rebind.sh index a81f1b569e..76eb9f2e4d 100755 --- 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 |