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 8382c76221b IGNITE-27304: Fix
8382c76221b is described below
commit 8382c76221bbed61af4c93fb452c827176821c42
Author: Igor Sapego <[email protected]>
AuthorDate: Tue Mar 24 21:01:17 2026 +0100
IGNITE-27304: Fix
---
.teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 8 ++++----
1 file changed, 4 insertions(+), 4 deletions(-)
diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index 49adbdca13f..a3551ddfa88 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -90,8 +90,8 @@ 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%
+ if %%ERRORLEVEL%% NEQ 0 if %%ERRORLEVEL%% NEQ -2 (
+ echo procdump failed unexpectedly with code %%ERRORLEVEL%%
exit /b 1
)
""".trimIndent()
@@ -103,8 +103,8 @@ 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%
+ if %%ERRORLEVEL%% NEQ 0 if %%ERRORLEVEL%% NEQ -2 (
+ echo procdump failed unexpectedly with code %%ERRORLEVEL%%
exit /b 1
)
""".trimIndent()