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:
Howard Chu 2026-06-01 15:11:31 +01:00
parent be6f96d255
commit c75af84410

View file

@ -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)