This is an automated email from the ASF dual-hosted git repository. isapego pushed a commit to branch ignite-27304 in repository https://gitbox.apache.org/repos/asf/ignite-3.git
commit bd658508e99c99badec42f022aa00c310abd7b24 Author: Igor Sapego <[email protected]> AuthorDate: Tue Mar 17 15:51:36 2026 +0100 IGNITE-27304: Add debug --- .teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt index 0763b3f5e57..e65fcdc5a51 100644 --- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt +++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt @@ -111,15 +111,18 @@ object PlatformCppTestsWindows : BuildType({ scriptMode = script { content = """ ${'$'}dumpsDir = "%PATH__CRASH_DUMPS%" + + Write-Host "CMake build dir: %PATH__CMAKE_BUILD_DIRECTORY%" + Write-Host "Working dir: %PATH__WORKING_DIR%" if (-not (Test-Path ${'$'}dumpsDir)) { - Write-Host "Dumps directory does not exist, skipping." + Write-Host "Dumps directory '${'$'}dumpsDir' does not exist, skipping." exit 0 } ${'$'}dumps = Get-ChildItem -Path ${'$'}dumpsDir -File if (${'$'}dumps.Count -eq 0) { - Write-Host "Dumps directory is empty, skipping." + Write-Host "Dumps directory '${'$'}dumpsDir' is empty, skipping." exit 0 }
