You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by pt...@apache.org on 2019/06/10 18:45:20 UTC

[ignite] 01/02: Add reproducer within problematic plugin test

This is an automated email from the ASF dual-hosted git repository.

ptupitsyn pushed a commit to branch ignite-dotnet-hanging-test
in repository https://gitbox.apache.org/repos/asf/ignite.git

commit cf219eff7c2160bca2317aefd382b92330effa64
Author: Pavel Tupitsyn <pt...@apache.org>
AuthorDate: Mon Jun 10 21:11:46 2019 +0300

    Add reproducer within problematic plugin test
---
 .../platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/PluginTest.cs    | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/PluginTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/PluginTest.cs
index f36d60d..ffe2464 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/PluginTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Plugin/PluginTest.cs
@@ -225,6 +225,10 @@ namespace Apache.Ignite.Core.Tests.Plugin
                     "normalPlugin.Start", "errPlugin.Start",
                     "errPlugin.Stop", "normalPlugin.Stop"
                 }, PluginLog);
+
+            // Verify ignite start-stop.
+            Ignition.Start(TestUtils.GetTestConfiguration());
+            Ignition.StopAll(true);
         }
 
         private class NoAttributeConfig : IPluginConfiguration