mirror of
https://gitlab.torproject.org/tpo/core/tor.git
synced 2024-11-30 15:43:32 +01:00
Have checkSpaceTest.sh exit as skipped when on Windows
Managing line-ending issues for this one isn't worth it.
This commit is contained in:
parent
bd61a4e848
commit
8a10a74870
@ -7,6 +7,19 @@
|
|||||||
umask 077
|
umask 077
|
||||||
set -e
|
set -e
|
||||||
|
|
||||||
|
# Skip this test if we're running on Windows; we expect line-ending
|
||||||
|
# issues in that case.
|
||||||
|
case "$(uname -s)" in
|
||||||
|
CYGWIN*) WINDOWS=1;;
|
||||||
|
MINGW*) WINDOWS=1;;
|
||||||
|
MSYS*) WINDOWS=1;;
|
||||||
|
*) WINDOWS=0;;
|
||||||
|
esac
|
||||||
|
if test "$WINDOWS" = 1; then
|
||||||
|
# This magic value tells automake that the test has been skipped.
|
||||||
|
exit 77
|
||||||
|
fi
|
||||||
|
|
||||||
# make a safe space for temporary files
|
# make a safe space for temporary files
|
||||||
DATA_DIR=$(mktemp -d -t tor_checkspace_tests.XXXXXX)
|
DATA_DIR=$(mktemp -d -t tor_checkspace_tests.XXXXXX)
|
||||||
trap 'rm -rf "$DATA_DIR"' 0
|
trap 'rm -rf "$DATA_DIR"' 0
|
||||||
|
Loading…
Reference in New Issue
Block a user