From 7b27d98eaea3bbbcf367fdf87b3dabbc28ca1f9c Mon Sep 17 00:00:00 2001 From: rl1987 Date: Sun, 19 Aug 2018 21:33:18 +0300 Subject: Actually, just disable test_rebind.sh on Appveyor --- src/test/test_rebind.sh | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'src/test') 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 -- cgit v1.2.3-54-g00ecf