You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by sb...@apache.org on 2017/01/09 09:24:46 UTC

ignite git commit: Disabled test since eviction is not implemented.

Repository: ignite
Updated Branches:
  refs/heads/ignite-3477 f3c723ce6 -> ceff09cbc


Disabled test since eviction is not implemented.


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

Branch: refs/heads/ignite-3477
Commit: ceff09cbccb4e0ab3e6b4234cc03bd0616894b1d
Parents: f3c723c
Author: sboikov <sb...@gridgain.com>
Authored: Mon Jan 9 12:24:51 2017 +0300
Committer: sboikov <sb...@gridgain.com>
Committed: Mon Jan 9 12:24:51 2017 +0300

----------------------------------------------------------------------
 .../cache/IgniteCacheReadThroughEvictionSelfTest.java           | 5 +++--
 1 file changed, 3 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/ceff09cb/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheReadThroughEvictionSelfTest.java
----------------------------------------------------------------------
diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheReadThroughEvictionSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheReadThroughEvictionSelfTest.java
index 33ddcbb..25ae237 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheReadThroughEvictionSelfTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/IgniteCacheReadThroughEvictionSelfTest.java
@@ -148,9 +148,10 @@ public class IgniteCacheReadThroughEvictionSelfTest extends IgniteCacheConfigVar
     }
 
     /**
+     * // TODO GG-11140: enable when eviction is implemented.
      * @throws Exception if failed.
      */
-    public void testReadThroughEvictionPolicy() throws Exception {
+    public void _testReadThroughEvictionPolicy() throws Exception {
         Ignite ig = testedGrid();
 
         CacheConfiguration<Object, Object> cc = variationConfig("eviction");
@@ -175,7 +176,7 @@ public class IgniteCacheReadThroughEvictionSelfTest extends IgniteCacheConfigVar
 
                     return size <= testsCfg.gridCount() && offheapSize < KEYS;
                 }
-            }, getTestTimeout()));
+            }, 30_000));
 
             for (int i = 0; i < KEYS; i++)
                 assertEquals(value(i), cache.get(key(i)));