This is an automated email from the ASF dual-hosted git repository.
gvvinblade 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 fa4ebf5 IGNITE-10518: Mute test. This closes #5832.
fa4ebf5 is described below
commit fa4ebf5dcd623474f6b699008143d92f5932c159
Author: Andrey V. Mashenkov <[email protected]>
AuthorDate: Wed Jan 16 12:20:24 2019 +0300
IGNITE-10518: Mute test. This closes #5832.
---
.../processors/cache/distributed/IgniteTxCachePrimarySyncTest.java | 7 +++++++
.../org/apache/ignite/testsuites/IgniteCacheMvccTestSuite9.java | 4 ++++
2 files changed, 11 insertions(+)
diff --git
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteTxCachePrimarySyncTest.java
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteTxCachePrimarySyncTest.java
index aa5de61..f5b46b3 100644
---
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteTxCachePrimarySyncTest.java
+++
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/distributed/IgniteTxCachePrimarySyncTest.java
@@ -129,6 +129,13 @@ public class IgniteTxCachePrimarySyncTest extends
GridCommonAbstractTest {
}
}
+ /** {@inheritDoc} */
+ @Override protected void afterTestsStopped() throws Exception {
+ super.afterTestsStopped();
+
+ stopAllGrids();
+ }
+
/**
* @throws Exception If failed.
*/
diff --git
a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccTestSuite9.java
b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccTestSuite9.java
index fa856cb..9578889 100644
---
a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccTestSuite9.java
+++
b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheMvccTestSuite9.java
@@ -25,6 +25,7 @@ import org.apache.ignite.IgniteSystemProperties;
import
org.apache.ignite.internal.processors.cache.IgniteCacheGetCustomCollectionsSelfTest;
import
org.apache.ignite.internal.processors.cache.IgniteCacheLoadRebalanceEvictionSelfTest;
import
org.apache.ignite.internal.processors.cache.distributed.CacheAtomicPrimarySyncBackPressureTest;
+import
org.apache.ignite.internal.processors.cache.distributed.IgniteTxCachePrimarySyncTest;
import
org.apache.ignite.internal.processors.cache.distributed.IgniteTxConcurrentRemoveObjectsTest;
import org.junit.runner.RunWith;
import org.junit.runners.Suite;
@@ -46,6 +47,9 @@ public class IgniteCacheMvccTestSuite9 {
// Skip classes that already contains Mvcc tests
ignoredTests.add(IgniteTxConcurrentRemoveObjectsTest.class);
+ // Non supported modes.
+ ignoredTests.add(IgniteTxCachePrimarySyncTest.class);
+
// Atomic caches.
ignoredTests.add(CacheAtomicPrimarySyncBackPressureTest.class);