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 719b6285748 IGNITE-27304: Fix
719b6285748 is described below
commit 719b6285748d8e802eb8b422d7f342ad50668818
Author: Igor Sapego <[email protected]>
AuthorDate: Wed Mar 18 00:37:59 2026 +0100
IGNITE-27304: Fix
---
.teamcity/test/platform_tests/PlatformCppTestsWindows.kt | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
index 4944ff998d6..7b1f139277d 100644
--- a/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
+++ b/.teamcity/test/platform_tests/PlatformCppTestsWindows.kt
@@ -130,7 +130,7 @@ object PlatformCppTestsWindows : BuildType({
exit 1
}
- ${'$'}dumpNames = ${'$'}dumps | ForEach-Object {
${'$'}_.BaseName.Split(".exe")[0] }
+ ${'$'}dumpNames = ${'$'}dumps | ForEach-Object {
(${'$'}_.BaseName -split "\.exe")[0] }
${'$'}exes = Get-ChildItem -Path "${'$'}binDir\*" -File
-Include "*.exe" |
Where-Object { ${'$'}dumpNames -contains
${'$'}_.BaseName }