diff --git a/tests/scripts/defines.sh b/tests/scripts/defines.sh index 52b497821a..65c928bf09 100755 --- a/tests/scripts/defines.sh +++ b/tests/scripts/defines.sh @@ -15,7 +15,10 @@ umask 077 -TESTWD=`pwd` +case "$OS" in +Windows*) TESTWD=`pwd -W` ;; +*) TESTWD=`pwd` ;; +esac if [ -z "$STARTTIME" ]; then STARTTIME=$(date +%s)