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 45c14f60c11 IGNITE-27304: Debug
45c14f60c11 is described below
commit 45c14f60c11333b31b2e7c71497682f0009a3df8
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 18 23:12:49 2026 +0100
IGNITE-27304: Debug
---
.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 | 12 ++++++++++--
1 file changed, 10 insertions(+), 2 deletions(-)
diff --git a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
index 9602326b756..d99ddcbed86 100644
--- a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
+++ b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
@@ -1,6 +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"
+$pdbcopy = "C:\Program Files (x86)\Windows Kits\10\Debuggers\x64\pdbcopy.exe"
$symPath =
"srv*%PATH__DEBUG_SYMBOLS_DIR%*https://msdl.microsoft.com/download/symbols;$binDir"
if (-not (Test-Path $dumpsDir)) {
@@ -16,9 +17,16 @@ 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 -c ".symopt+ 0x40000; .lines;
!analyze -v; .ecxr; kL; q"
+ Write-Host "##teamcity[blockOpened name='PDB Debug 1: $($dump.Name)']"
+ & $pdbcopy $dump.FullName -p
+ Write-Host "##teamcity[blockClosed name='PDB Debug 1: $($dump.Name)']"
+
+ Write-Host "##teamcity[blockOpened name='PDB Debug 2: $($dump.Name)']"
+ & $cdb -z $dump.FullName -y $symPath -c "lm v m ignite_client_test; q"
+ Write-Host "##teamcity[blockClosed name='PDB Debug 2: $($dump.Name)']"
+ Write-Host "##teamcity[blockOpened name='Crash analysis: $($dump.Name)']"
+ & $cdb -z $dump.FullName -y $symPath -c ".symopt+ 0x80000; .lines;
!analyze -v; .ecxr; kn /f; q"
Write-Host "##teamcity[blockClosed name='Crash analysis: $($dump.Name)']"
}