This is an automated email from the ASF dual-hosted git repository.
sergey-chugunov-1985 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git
The following commit(s) were added to refs/heads/master by this push:
new b00c602259b IGNITE-28845 Fix broken tests in DeploymentTest (#13315)
b00c602259b is described below
commit b00c602259b2137518162be5f49e6c99db5b1350
Author: Dmitry Werner <[email protected]>
AuthorDate: Fri Jul 3 13:12:57 2026 +0500
IGNITE-28845 Fix broken tests in DeploymentTest (#13315)
---
modules/platforms/dotnet/Apache.Ignite.Core.Tests/DeploymentTest.cs | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git
a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DeploymentTest.cs
b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DeploymentTest.cs
index 5a7d39c15e8..16100321055 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DeploymentTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DeploymentTest.cs
@@ -170,6 +170,8 @@ namespace Apache.Ignite.Core.Tests
Assert.Fail("Node failed to start: " + string.Join("\n",
reader.GetOutput()));
}
+ Assert.IsFalse(proc.HasExited, "Node process died: " +
string.Join("\n", reader.GetOutput()));
+
VerifyNodeStarted(exePath);
}
@@ -191,7 +193,7 @@ namespace Apache.Ignite.Core.Tests
// Copy jars.
var home = IgniteHome.Resolve();
- var jarNames = new[] {@"\ignite-core-", @"\cache-api-1.0.0.jar",
@"\modules\spring\"};
+ var jarNames = new[] {@"\ignite-core-", @"\cache-api-1.0.0.jar",
@"\modules\spring\", @"\ignite-spring-"};
var jars = Directory.GetFiles(home, "*.jar",
SearchOption.AllDirectories)
.Where(jarPath => jarNames.Any(jarPath.Contains)).ToArray();