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 bf23c1ce4b1 IGNITE-27304: Fix
bf23c1ce4b1 is described below

commit bf23c1ce4b14fb293e7c862a0d6b798ec300b82b
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Mar 24 20:53:25 2026 +0100

    IGNITE-27304: Fix
---
 .teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 8 ++++++++
 1 file changed, 8 insertions(+)

diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt 
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index 8e45699b62e..49adbdca13f 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -90,6 +90,10 @@ object PlatformCppTestsWindows : BuildType({
             scriptContent = """
                 mkdir %PATH__CRASH_DUMPS% 2>nul
                 procdump -accepteula -ma -e -n 1 -x %PATH__CRASH_DUMPS% 
Debug\bin\ignite-client-test --gtest_output=xml:%PATH__CLIENT_TEST_RESULTS%
+                if %ERRORLEVEL% NEQ 0 if %ERRORLEVEL% NEQ -2 (
+                    echo procdump failed unexpectedly with code %ERRORLEVEL%
+                    exit /b 1
+                )
             """.trimIndent()
             formatStderrAsError = true
         }
@@ -99,6 +103,10 @@ object PlatformCppTestsWindows : BuildType({
             scriptContent = """
                 mkdir %PATH__CRASH_DUMPS% 2>nul
                 procdump -accepteula -ma -e -n 1 -x %PATH__CRASH_DUMPS% 
Debug\bin\ignite-odbc-test --gtest_output=xml:%PATH__ODBC_TEST_RESULTS%
+                if %ERRORLEVEL% NEQ 0 if %ERRORLEVEL% NEQ -2 (
+                    echo procdump failed unexpectedly with code %ERRORLEVEL%
+                    exit /b 1
+                )
             """.trimIndent()
             formatStderrAsError = true
         }

Reply via email to