mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-12-06 19:41:15 +01:00
Actually, just disable test_rebind.sh on Appveyor
This commit is contained in:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user