You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@ignite.apache.org by am...@apache.org on 2019/03/18 12:22:19 UTC

[ignite] branch master updated: IGNITE-11559: MVCC: Mute hanging test.

This is an automated email from the ASF dual-hosted git repository.

amashenkov pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/ignite.git


The following commit(s) were added to refs/heads/master by this push:
     new 4152ecc  IGNITE-11559: MVCC: Mute hanging test.
4152ecc is described below

commit 4152eccc554e8d3ead811f63bd7632b36925c740
Author: Andrey V. Mashenkov <an...@gmail.com>
AuthorDate: Mon Mar 18 15:22:05 2019 +0300

    IGNITE-11559: MVCC: Mute hanging test.
---
 .../baseline/ClientAffinityAssignmentWithBaselineTest.java            | 4 ++++
 1 file changed, 4 insertions(+)

diff --git a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/baseline/ClientAffinityAssignmentWithBaselineTest.java b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/baseline/ClientAffinityAssignmentWithBaselineTest.java
index 7788193..9e3c73f 100644
--- a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/baseline/ClientAffinityAssignmentWithBaselineTest.java
+++ b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/persistence/baseline/ClientAffinityAssignmentWithBaselineTest.java
@@ -51,10 +51,12 @@ import org.apache.ignite.internal.util.typedef.internal.U;
 import org.apache.ignite.lang.IgniteFuture;
 import org.apache.ignite.lang.IgnitePredicate;
 import org.apache.ignite.testframework.GridTestUtils;
+import org.apache.ignite.testframework.MvccFeatureChecker;
 import org.apache.ignite.testframework.junits.common.GridCommonAbstractTest;
 import org.apache.ignite.transactions.Transaction;
 import org.apache.ignite.transactions.TransactionConcurrency;
 import org.apache.ignite.transactions.TransactionIsolation;
+import org.junit.Assume;
 import org.junit.Ignore;
 import org.junit.Test;
 
@@ -161,6 +163,8 @@ public class ClientAffinityAssignmentWithBaselineTest extends GridCommonAbstract
 
     /** {@inheritDoc} */
     @Override protected void beforeTestsStarted() throws Exception {
+        Assume.assumeFalse("https://issues.apache.org/jira/browse/IGNITE-11559", MvccFeatureChecker.forcedMvcc());
+
         System.setProperty(IGNITE_BASELINE_AUTO_ADJUST_ENABLED, "false");
 
         super.beforeTestsStarted();