diff --git a/scripts/build-appveyor.bat b/scripts/build-appveyor.bat index 73929fa5e..b70da94cc 100644 --- a/scripts/build-appveyor.bat +++ b/scripts/build-appveyor.bat @@ -11,7 +11,7 @@ powershell .\scripts\appveyor-system-info.ps1 IF %ERRORLEVEL% NEQ 0 GOTO ERROR ::only build on AppVeyor, if explicitly stated -ECHO APPVEYOR_REPO_COMMIT_MESSAGE^: %APPVEYOR_REPO_COMMIT_MESSAGE% +ECHO APPVEYOR_REPO_COMMIT_MESSAGE^: "%APPVEYOR_REPO_COMMIT_MESSAGE%" ::SET BUILD_ON_APPVEYOR=0 ::for /F "tokens=1 usebackq" %%i in (`powershell .\scripts\parse-commit-message.ps1 '[build appveyor]'`) DO SET BUILD_ON_APPVEYOR=%%i ::IF %BUILD_ON_APPVEYOR% EQU 0 ECHO not building, commit with [build appveyor] && GOTO DONE diff --git a/test/unit/datasource/shapeindex.cpp b/test/unit/datasource/shapeindex.cpp index 7b3aef029..1ea3cdfb8 100644 --- a/test/unit/datasource/shapeindex.cpp +++ b/test/unit/datasource/shapeindex.cpp @@ -97,6 +97,9 @@ TEST_CASE("shapeindex") { for (bool index_parts : {false, true} ) { + CAPTURE(path); + CAPTURE(index_parts); + std::string index_path = path.substr(0, path.rfind(".")) + ".index"; // remove *.index if present if (mapnik::util::exists(index_path))