test_rebind.sh 404 B

1234567891011121314151617
  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. echo "This test is disabled on Windows CI, as it requires firewall examptions. Skipping." >&2
  8. exit 77
  9. fi
  10. exitcode=0
  11. "${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/test_rebind.py" "${TESTING_TOR_BINARY}" || exitcode=1
  12. exit ${exitcode}