You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by ag...@apache.org on 2017/04/18 09:00:15 UTC

[03/50] [abbrv] ignite git commit: .NET: Move some long tests to Long Running suite

.NET: Move some long tests to Long Running suite


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/0893a568
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/0893a568
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/0893a568

Branch: refs/heads/ignite-4985
Commit: 0893a56835eadbba2f56933ad55bd8385e09d02a
Parents: 49cae05
Author: Pavel Tupitsyn <pt...@apache.org>
Authored: Mon Apr 17 17:01:48 2017 +0300
Committer: Pavel Tupitsyn <pt...@apache.org>
Committed: Mon Apr 17 17:01:48 2017 +0300

----------------------------------------------------------------------
 .../Apache.Ignite.Core.Tests/Cache/CacheDynamicStartTest.cs      | 4 ++--
 .../Apache.Ignite.Core.Tests/DataStructures/AtomicLongTest.cs    | 1 +
 .../platforms/dotnet/Apache.Ignite.Core.Tests/ExecutableTest.cs  | 3 ++-
 modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestUtils.cs   | 2 +-
 4 files changed, 6 insertions(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/0893a568/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheDynamicStartTest.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheDynamicStartTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheDynamicStartTest.cs
index 5f07c3a..7f6e824 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheDynamicStartTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/Cache/CacheDynamicStartTest.cs
@@ -21,13 +21,13 @@ namespace Apache.Ignite.Core.Tests.Cache
     using System.Collections.Generic;
     using Apache.Ignite.Core.Binary;
     using Apache.Ignite.Core.Cache;
-    using Apache.Ignite.Core.Impl;
     using Apache.Ignite.Core.Tests.Query;
     using NUnit.Framework;
 
     /// <summary>
-    /// Tests for dynamic a cache start.
+    /// Tests for dynamic cache start.
     /// </summary>
+    [Category(TestUtils.CategoryIntensive)]
     public class CacheDynamicStartTest
     {
         /** Grid name: data. */

http://git-wip-us.apache.org/repos/asf/ignite/blob/0893a568/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicLongTest.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicLongTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicLongTest.cs
index 28d0223..fd9849c 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicLongTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/DataStructures/AtomicLongTest.cs
@@ -115,6 +115,7 @@ namespace Apache.Ignite.Core.Tests.DataStructures
         /// Tests multithreaded scenario.
         /// </summary>
         [Test]
+        [Category(TestUtils.CategoryIntensive)]
         public void TestMultithreaded()
         {
             const int atomicCnt = 10;

http://git-wip-us.apache.org/repos/asf/ignite/blob/0893a568/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ExecutableTest.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ExecutableTest.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ExecutableTest.cs
index 8fcd99b..dbac120 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ExecutableTest.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/ExecutableTest.cs
@@ -32,8 +32,9 @@ namespace Apache.Ignite.Core.Tests
     using NUnit.Framework;
 
     /// <summary>
-    /// Tests for executable.
+    /// Tests for Apache.Ignite.exe.
     /// </summary>
+    [Category(TestUtils.CategoryIntensive)]
     public class ExecutableTest
     {
         /** Spring configuration path. */

http://git-wip-us.apache.org/repos/asf/ignite/blob/0893a568/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestUtils.cs
----------------------------------------------------------------------
diff --git a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestUtils.cs b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestUtils.cs
index 945d0df..8d9a3d2 100644
--- a/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestUtils.cs
+++ b/modules/platforms/dotnet/Apache.Ignite.Core.Tests/TestUtils.cs
@@ -45,7 +45,7 @@ namespace Apache.Ignite.Core.Tests
         public const string CategoryExamples = "EXAMPLES_TEST";
 
         /** */
-        public const int DfltBusywaitSleepInterval = 200;
+        private const int DfltBusywaitSleepInterval = 200;
 
         /** */