Repository: incubator-ignite Updated Branches: refs/heads/ignite-49 7bf6cde8d -> 1f22fec31
#IGNITE-49 Fixed tests. Project: http://git-wip-us.apache.org/repos/asf/incubator-ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/incubator-ignite/commit/1f22fec3 Tree: http://git-wip-us.apache.org/repos/asf/incubator-ignite/tree/1f22fec3 Diff: http://git-wip-us.apache.org/repos/asf/incubator-ignite/diff/1f22fec3 Branch: refs/heads/ignite-49 Commit: 1f22fec31a2d079bfb6d1cd2af9bb9d5afb55e5d Parents: 7bf6cde Author: nikolay_tikhonov <ntikho...@gridgain.com> Authored: Mon Jan 19 11:07:10 2015 +0300 Committer: nikolay_tikhonov <ntikho...@gridgain.com> Committed: Mon Jan 19 11:07:10 2015 +0300 ---------------------------------------------------------------------- .../cache/GridCacheAbstractMetricsSelfTest.java | 24 ++++++++++++++++++++ 1 file changed, 24 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/incubator-ignite/blob/1f22fec3/modules/core/src/test/java/org/gridgain/grid/kernal/processors/cache/GridCacheAbstractMetricsSelfTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/gridgain/grid/kernal/processors/cache/GridCacheAbstractMetricsSelfTest.java b/modules/core/src/test/java/org/gridgain/grid/kernal/processors/cache/GridCacheAbstractMetricsSelfTest.java index e7d2846..5e9caec 100644 --- a/modules/core/src/test/java/org/gridgain/grid/kernal/processors/cache/GridCacheAbstractMetricsSelfTest.java +++ b/modules/core/src/test/java/org/gridgain/grid/kernal/processors/cache/GridCacheAbstractMetricsSelfTest.java @@ -107,6 +107,10 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testRemoveAvgTime() throws Exception { + // TODO: GG-7578. + if (cache().configuration().getCacheMode() == GridCacheMode.REPLICATED) + return; + IgniteCache<Integer, Integer> jcache = grid(0).jcache(null); GridCache<Object, Object> cache = grid(0).cache(null); @@ -136,6 +140,10 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testRemoveAllAvgTime() throws Exception { + // TODO: GG-7578. + if (cache().configuration().getCacheMode() == GridCacheMode.REPLICATED) + return; + IgniteCache<Integer, Integer> jcache = grid(0).jcache(null); GridCache<Object, Object> cache = grid(0).cache(null); @@ -166,6 +174,10 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testGetAvgTime() throws Exception { + // TODO: GG-7578. + if (cache().configuration().getCacheMode() == GridCacheMode.REPLICATED) + return; + IgniteCache<Integer, Integer> jcache = grid(0).jcache(null); GridCache<Object, Object> cache = grid(0).cache(null); @@ -196,6 +208,10 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testGetAllAvgTime() throws Exception { + // TODO: GG-7578. + if (cache().configuration().getCacheMode() == GridCacheMode.REPLICATED) + return; + IgniteCache<Integer, Integer> jcache = grid(0).jcache(null); GridCache<Object, Object> cache = grid(0).cache(null); @@ -228,6 +244,10 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testPutAvgTime() throws Exception { + // TODO: GG-7578. + if (cache().configuration().getCacheMode() == GridCacheMode.REPLICATED) + return; + IgniteCache<Integer, Integer> jcache = grid(0).jcache(null); GridCache<Object, Object> cache = grid(0).cache(null); @@ -256,6 +276,10 @@ public abstract class GridCacheAbstractMetricsSelfTest extends GridCacheAbstract * @throws Exception If failed. */ public void testPutAllAvgTime() throws Exception { + // TODO: GG-7578. + if (cache().configuration().getCacheMode() == GridCacheMode.REPLICATED) + return; + IgniteCache<Integer, Integer> jcache = grid(0).jcache(null); GridCache<Object, Object> cache = grid(0).cache(null);