mirror of
https://git.openldap.org/openldap/openldap.git
synced 2026-06-08 16:22:09 -04:00
ITS#10515 tests: Windows compat
We use MSYS(2) to build on Windows. To run the test suite we need to use Windows-compatible pathnames.
This commit is contained in:
parent
be6f96d255
commit
c75af84410
1 changed files with 4 additions and 1 deletions
|
|
@ -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)
|
||||
|
|
|
|||
Loading…
Reference in a new issue