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 a4e9f5c4107 IGNITE-27304: Debug
a4e9f5c4107 is described below

commit a4e9f5c4107a054e2e8324695c49044e14896b1e
Author: Igor Sapego <[email protected]>
AuthorDate: Fri Mar 20 19:11:52 2026 +0100

    IGNITE-27304: Debug
---
 .../files/scripts/powershell/AnalyzeCrashDumps.ps1 | 23 ++++++++++++++--------
 1 file changed, 15 insertions(+), 8 deletions(-)

diff --git a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 
b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
index 73df28ae281..3e9c37f627a 100644
--- a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
+++ b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
@@ -17,13 +17,20 @@ if ($dumps.Count -eq 0) {
 
 foreach ($dump in $dumps) {
     Write-Host "##teamcity[buildProblem description='Crash dump detected: 
$($dump.Name)']"
-
     Write-Host "##teamcity[blockOpened name='Crash analysis: $($dump.Name)']"
-    & $cdb -z $dump.FullName -y $symPath -srcpath $srcPath -c ".symopt+ 
0x80000; .reload /f; .lines; .ecxr; kL; q"
-    Write-Host "##teamcity[blockClosed name='Crash analysis: $($dump.Name)']"
-}
 
-Write-Host "##teamcity[blockOpened name='Sym check']"
-Write-Host "Temp: %env.TEMP%"
-& "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\symchk.exe" /r 
C:\Windows\System32\ntdll.dll /s 
"srv*%env.TEMP%\symtest*https://msdl.microsoft.com/download/symbols";
-Write-Host "##teamcity[blockClosed name='Sym check']"
+    $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"
+    }
+
+    Write-Host "##teamcity[blockClosed name='Crash analysis: $($dump.Name)']"
+}
\ No newline at end of file

Reply via email to