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


The following commit(s) were added to refs/heads/ignite-27304 by this push:
     new d4f39a3e91c IGNITE-27304: Debug
d4f39a3e91c is described below

commit d4f39a3e91c99353ed35abdbc82ca7335e03e882
Author: Igor Sapego <[email protected]>
AuthorDate: Fri Mar 20 20:20:20 2026 +0100

    IGNITE-27304: Debug
---
 .teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 | 15 ++-------------
 .teamcity/test/platform_tests/PlatformCppTestsWindows.kt |  1 -
 2 files changed, 2 insertions(+), 14 deletions(-)

diff --git a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 
b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
index 3e9c37f627a..062fa732b96 100644
--- a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
+++ b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
@@ -1,7 +1,7 @@
 $dumpsDir = "%PATH__CRASH_DUMPS%"
 $binDir = "%PATH__CMAKE_BUILD_DIRECTORY%\Debug\bin"
 $cdb = "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\cdb.exe"
-$symPath = 
"srv*%PATH__DEBUG_SYMBOLS_DIR%*https://msdl.microsoft.com/download/symbols;$binDir";
+$symPath = "$dumpsDir;$binDir"
 $srcPath = "%PATH__WORKING_DIR%"
 
 if (-not (Test-Path $dumpsDir)) {
@@ -19,18 +19,7 @@ foreach ($dump in $dumps) {
     Write-Host "##teamcity[buildProblem description='Crash dump detected: 
$($dump.Name)']"
     Write-Host "##teamcity[blockOpened name='Crash analysis: $($dump.Name)']"
 
-    $stackCommands = @(
-        "kn",
-        "kPL",
-        "kv",
-        "dds esp",
-        "k /f"
-    )
-
-    foreach ($cmd in $stackCommands) {
-        Write-Host "--- Stack trace variant: $cmd ---"
-        & $cdb -z $dump.FullName -y $symPath -srcpath $srcPath -c ".symopt+ 
0x80000; .reload /f; .lines; .ecxr; $cmd; q"
-    }
+    & $cdb -z $dump.FullName -y $symPath -srcpath $srcPath -c ".symopt+ 
0x80000; .reload /f; .lines; .ecxr; knPL; q"
 
     Write-Host "##teamcity[blockClosed name='Crash analysis: $($dump.Name)']"
 }
\ No newline at end of file
diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt 
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index ac001ea87c2..aca1795b584 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -35,7 +35,6 @@ object PlatformCppTestsWindows : BuildType({
         hiddenText("PATH__CRASH_DUMPS", 
"""%PATH__CMAKE_BUILD_DIRECTORY%\dumps""")
         hiddenText("PATH__UNIT_TESTS_RESULT", 
"""%PATH__CMAKE_BUILD_DIRECTORY%\cpp_unit_test_results.xml""")
         hiddenText("PATH__WORKING_DIR", 
"""%teamcity.build.checkoutDir%\%VCSROOT__IGNITE3%\modules\platforms\cpp""")
-        hiddenText("PATH__DEBUG_SYMBOLS_DIR", 
"""%teamcity.agent.home.dir%\cpp_debug\symbols""")
         hiddenText("env.CPP_STAGING", """%PATH__WORKING_DIR%\cpp_staging""")
     }
 

Reply via email to