tor/src/test/test_rebind.sh

20 lines
451 B
Bash
Raw Normal View History

#!/bin/sh
set -x
UNAME_OS=$(uname -s | cut -d_ -f1)
2018-08-18 15:29:46 +02:00
if test "$UNAME_OS" = 'CYGWIN' || \
test "$UNAME_OS" = 'MSYS' || \
test "$UNAME_OS" = 'MINGW'; then
if test "$APPVEYOR" = 'True'; then
echo "This test is disabled on Windows CI, as it requires firewall examptions. Skipping." >&2
exit 77
fi
2018-08-18 15:29:46 +02:00
fi
exitcode=0
"${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/test_rebind.py" "${TESTING_TOR_BINARY}" || exitcode=1
exit ${exitcode}