Repository: ignite Updated Branches: refs/heads/master 428924376 -> 65bd760ba
IGNITE-9516: MVCC: workaround for hanging test. This closes #4728. Project: http://git-wip-us.apache.org/repos/asf/ignite/repo Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/65bd760b Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/65bd760b Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/65bd760b Branch: refs/heads/master Commit: 65bd760baedbe3516fcd01de09c5b89a9ca88171 Parents: 4289243 Author: ipavlukhin <[email protected]> Authored: Tue Sep 11 17:01:47 2018 +0300 Committer: devozerov <[email protected]> Committed: Tue Sep 11 17:01:47 2018 +0300 ---------------------------------------------------------------------- .../internal/processors/cache/mvcc/CacheMvccAbstractTest.java | 2 +- .../processors/cache/mvcc/CacheMvccTransactionsTest.java | 4 ++++ 2 files changed, 5 insertions(+), 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/ignite/blob/65bd760b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccAbstractTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccAbstractTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccAbstractTest.java index 6e22f44..c5137f6 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccAbstractTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccAbstractTest.java @@ -1590,7 +1590,7 @@ public abstract class CacheMvccAbstractTest extends GridCommonAbstractTest { fut.markInitialized(); // Wait vacuum finished. - fut.get(); + fut.get(getTestTimeout()); } /** http://git-wip-us.apache.org/repos/asf/ignite/blob/65bd760b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccTransactionsTest.java ---------------------------------------------------------------------- diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccTransactionsTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccTransactionsTest.java index f1519df..e06d2d2 100644 --- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccTransactionsTest.java +++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/mvcc/CacheMvccTransactionsTest.java @@ -2278,6 +2278,8 @@ public class CacheMvccTransactionsTest extends CacheMvccAbstractTest { * @throws Exception If failed. */ public void testRebalanceSimple() throws Exception { + fail("https://issues.apache.org/jira/browse/IGNITE-9451"); + Ignite srv0 = startGrid(0); IgniteCache<Integer, Integer> cache = (IgniteCache)srv0.createCache( @@ -3136,6 +3138,8 @@ public class CacheMvccTransactionsTest extends CacheMvccAbstractTest { * @throws IgniteCheckedException If failed. */ public void testSize() throws Exception { + fail("https://issues.apache.org/jira/browse/IGNITE-9451"); + Ignite node = startGrid(0); IgniteCache cache = node.createCache(cacheConfiguration(PARTITIONED, FULL_SYNC, 0, 1));
