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
commit adef339e07d567144f9b1ff63323539719cf151e Author: Igor Sapego <[email protected]> AuthorDate: Tue Mar 17 13:53:52 2026 +0100 IGNITE-27304: Make procdump happy by accepting EULA --- .teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt index 038daf74268..9bd62704a20 100644 --- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt +++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt @@ -88,7 +88,7 @@ object PlatformCppTestsWindows : BuildType({ workingDir = "%PATH__CMAKE_BUILD_DIRECTORY%" scriptContent = """ mkdir %PATH__CRASH_DUMPS% 2>nul - procdump -ma -e -t -x %PATH__CRASH_DUMPS% Debug\bin\ignite-client-test --gtest_output=xml:%PATH__CLIENT_TEST_RESULTS% + procdump -accepteula -ma -e -t -x %PATH__CRASH_DUMPS% Debug\bin\ignite-client-test --gtest_output=xml:%PATH__CLIENT_TEST_RESULTS% """.trimIndent() formatStderrAsError = true } @@ -97,7 +97,7 @@ object PlatformCppTestsWindows : BuildType({ workingDir = "%PATH__CMAKE_BUILD_DIRECTORY%" scriptContent = """ mkdir %PATH__CRASH_DUMPS% 2>nul - procdump -ma -e -t -x %PATH__CRASH_DUMPS% Debug\bin\ignite-odbc-test --gtest_output=xml:%PATH__ODBC_TEST_RESULTS% + procdump -accepteula -ma -e -t -x %PATH__CRASH_DUMPS% Debug\bin\ignite-odbc-test --gtest_output=xml:%PATH__ODBC_TEST_RESULTS% """.trimIndent() formatStderrAsError = true }
