Repository: ignite Updated Branches: refs/heads/master 651ffc544 -> d1d680237
IGNITE-4536 two tests unmuted, one test removed as obsolete (IGNITE-5592) - Fixes #2235. Signed-off-by: Alexey Goncharuk <[email protected]> Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/90b67fa1 Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/90b67fa1 Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/90b67fa1 Branch: refs/heads/master Commit: 90b67fa1b72b096943499e26e402988840bdbe97 Parents: 44f3fac Author: Sergey Chugunov <[email protected]> Authored: Tue Jul 4 20:47:09 2017 +0300 Committer: Alexey Goncharuk <[email protected]> Committed: Tue Jul 4 20:47:09 2017 +0300 ---------------------------------------------------------------------- .../cache/GridCacheAbstractMetricsSelfTest.java | 24 -------------------- 1 file changed, 24 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/90b67fa1/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractMetricsSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractMetricsSelfTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractMetricsSelfTest.java index 2e81b96..6aed380 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractMetricsSelfTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/GridCacheAbstractMetricsSelfTest.java @@ -17,7 +17,6 @@ package org.apache.ignite.internal.processors.cache; -import java.util.Collections; import java.util.HashMap; import java.util.HashSet; import java.util.LinkedHashSet; @@ -581,8 +580,6 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testMisses() throws Exception { - fail("https://issues.apache.org/jira/browse/IGNITE-4536"); - IgniteCache<Integer, Integer> cache = grid(0).cache(DEFAULT_CACHE_NAME); int keyCnt = keyCount(); @@ -625,8 +622,6 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testMissesOnEmptyCache() throws Exception { - fail("https://issues.apache.org/jira/browse/IGNITE-4536"); - IgniteCache<Integer, Integer> cache = grid(0).cache(DEFAULT_CACHE_NAME); assertEquals("Expected 0 read", 0, cache.localMetrics().getCacheGets()); @@ -678,25 +673,6 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract /** * @throws Exception If failed. */ - public void testManualEvictions() throws Exception { - fail("https://issues.apache.org/jira/browse/IGNITE-4536"); - - IgniteCache<Integer, Integer> cache = grid(0).cache(DEFAULT_CACHE_NAME); - - if (cache.getConfiguration(CacheConfiguration.class).getCacheMode() == CacheMode.PARTITIONED) - return; - - cache.put(1, 1); - - cache.localEvict(Collections.singleton(1)); - - assertEquals(0L, cache.localMetrics().getCacheRemovals()); - assertEquals(1L, cache.localMetrics().getCacheEvictions()); - } - - /** - * @throws Exception If failed. - */ public void testTxEvictions() throws Exception { if (grid(0).cache(DEFAULT_CACHE_NAME).getConfiguration(CacheConfiguration.class).getAtomicityMode() != CacheAtomicityMode.ATOMIC) checkTtl(true);
