test_rebind.sh 451 B

12345678910111213141516171819
  1. #!/bin/sh
  2. set -x
  3. UNAME_OS=$(uname -s | cut -d_ -f1)
  4. if test "$UNAME_OS" = 'CYGWIN' || \
  5. test "$UNAME_OS" = 'MSYS' || \
  6. test "$UNAME_OS" = 'MINGW'; then
  7. if test "$APPVEYOR" = 'True'; then
  8. echo "This test is disabled on Windows CI, as it requires firewall examptions. Skipping." >&2
  9. exit 77
  10. fi
  11. fi
  12. exitcode=0
  13. "${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/test_rebind.py" "${TESTING_TOR_BINARY}" || exitcode=1
  14. exit ${exitcode}