2018-05-17 16:01:52 +02:00
|
|
|
#!/bin/sh
|
|
|
|
|
2018-08-05 15:27:49 +02:00
|
|
|
set -x
|
|
|
|
|
2018-08-19 20:33:18 +02:00
|
|
|
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
|
2018-08-19 20:33:18 +02:00
|
|
|
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
|
|
|
|
|
2018-05-17 16:01:52 +02:00
|
|
|
exitcode=0
|
|
|
|
|
2018-11-22 01:53:57 +01:00
|
|
|
tmpdir=
|
|
|
|
clean () { test -n "$tmpdir" && test -d "$tmpdir" && rm -rf "$tmpdir" || :; }
|
|
|
|
trap clean EXIT HUP INT TERM
|
|
|
|
|
|
|
|
tmpdir="`mktemp -d -t tor_rebind_test.XXXXXX`"
|
|
|
|
if [ -z "$tmpdir" ]; then
|
|
|
|
echo >&2 mktemp failed
|
|
|
|
exit 2
|
|
|
|
elif [ ! -d "$tmpdir" ]; then
|
|
|
|
echo >&2 mktemp failed to make a directory
|
|
|
|
exit 3
|
|
|
|
fi
|
|
|
|
|
|
|
|
"${PYTHON:-python}" "${abs_top_srcdir:-.}/src/test/test_rebind.py" "${TESTING_TOR_BINARY}" "$tmpdir" || exitcode=1
|
2018-05-17 16:01:52 +02:00
|
|
|
|
|
|
|
exit ${exitcode}
|