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 f030d5ac341 IGNITE-27304: Improve output
f030d5ac341 is described below
commit f030d5ac3411ada42c42b3dbeb822e82df64d992
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Mar 24 18:15:07 2026 +0100
IGNITE-27304: Improve output
---
.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1 | 2 +-
.teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
index b55efe52e37..3482e590cb0 100644
--- a/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
+++ b/.teamcity/files/scripts/powershell/AnalyzeCrashDumps.ps1
@@ -19,7 +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)']"
- & $cdb -z $dump.FullName -y $symPath -srcpath $srcPath -t 0 -c ".symopt+
0x80000; .reload /f; .lines; .ecxr; kp; q"
+ & $cdb -z $dump.FullName -y $symPath -srcpath $srcPath -t 0 -c ".symopt+
0x80000; .reload /f; .lines; .ecxr; ~*kp; 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 aca1795b584..88f281c407f 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -89,7 +89,7 @@ object PlatformCppTestsWindows : BuildType({
workingDir = "%PATH__CMAKE_BUILD_DIRECTORY%"
scriptContent = """
mkdir %PATH__CRASH_DUMPS% 2>nul
- procdump -accepteula -ma -e -t -x %PATH__CRASH_DUMPS%
Debug\bin\ignite-client-test --gtest_output=xml:%PATH__CLIENT_TEST_RESULTS%
+ procdump -accepteula -ma -e -n 1 -x %PATH__CRASH_DUMPS%
Debug\bin\ignite-client-test --gtest_output=xml:%PATH__CLIENT_TEST_RESULTS%
""".trimIndent()
formatStderrAsError = true
}
@@ -98,7 +98,7 @@ object PlatformCppTestsWindows : BuildType({
workingDir = "%PATH__CMAKE_BUILD_DIRECTORY%"
scriptContent = """
mkdir %PATH__CRASH_DUMPS% 2>nul
- procdump -accepteula -ma -e -t -x %PATH__CRASH_DUMPS%
Debug\bin\ignite-odbc-test --gtest_output=xml:%PATH__ODBC_TEST_RESULTS%
+ procdump -accepteula -ma -e -n 1 -x %PATH__CRASH_DUMPS%
Debug\bin\ignite-odbc-test --gtest_output=xml:%PATH__ODBC_TEST_RESULTS%
""".trimIndent()
formatStderrAsError = true
}