Repository: ignite
Updated Branches:
  refs/heads/ignite-3477 3c99f9099 -> e82940cde


Disabled failing test.


Project: http://git-wip-us.apache.org/repos/asf/ignite/repo
Commit: http://git-wip-us.apache.org/repos/asf/ignite/commit/e82940cd
Tree: http://git-wip-us.apache.org/repos/asf/ignite/tree/e82940cd
Diff: http://git-wip-us.apache.org/repos/asf/ignite/diff/e82940cd

Branch: refs/heads/ignite-3477
Commit: e82940cdede7001b2cf72a63731df29c9fc43bc2
Parents: 3c99f90
Author: sboikov <[email protected]>
Authored: Tue Jan 10 13:45:09 2017 +0300
Committer: sboikov <[email protected]>
Committed: Tue Jan 10 13:45:09 2017 +0300

----------------------------------------------------------------------
 .../processors/cache/CacheEntryProcessorCopySelfTest.java    | 8 --------
 .../org/apache/ignite/testsuites/IgniteCacheTestSuite.java   | 6 +++++-
 2 files changed, 5 insertions(+), 9 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/ignite/blob/e82940cd/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
index 264cc03..21395e6 100644
--- 
a/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/internal/processors/cache/CacheEntryProcessorCopySelfTest.java
@@ -68,10 +68,6 @@ public class CacheEntryProcessorCopySelfTest extends 
GridCommonAbstractTest {
      * @throws Exception If failed.
      */
     public void testMutableEntryWithP2PEnabled() throws Exception {
-        // Test fails due to incorrect handling of 
CacheConfiguration#getCopyOnRead() and
-        // CacheObjectContext#storeValue() properties. Heap storage should be 
redesigned in this ticket.
-        fail("https://ggsystems.atlassian.net/browse/GG-11148";);
-
         doTestMutableEntry(true);
     }
 
@@ -79,10 +75,6 @@ public class CacheEntryProcessorCopySelfTest extends 
GridCommonAbstractTest {
      * @throws Exception If failed.
      */
     public void testMutableEntryWithP2PDisabled() throws Exception {
-        // Test fails due to incorrect handling of 
CacheConfiguration#getCopyOnRead() and
-        // CacheObjectContext#storeValue() properties. Heap storage should be 
redesigned in this ticket.
-        fail("https://ggsystems.atlassian.net/browse/GG-11148";);
-
         doTestMutableEntry(false);
     }
 

http://git-wip-us.apache.org/repos/asf/ignite/blob/e82940cd/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite.java
----------------------------------------------------------------------
diff --git 
a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite.java
 
b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite.java
index 5b54aa2..d562019 100755
--- 
a/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite.java
+++ 
b/modules/core/src/test/java/org/apache/ignite/testsuites/IgniteCacheTestSuite.java
@@ -202,11 +202,15 @@ public class IgniteCacheTestSuite extends TestSuite {
         suite.addTestSuite(CacheEntryProcessorNonSerializableTest.class);
         suite.addTestSuite(CacheEntryProcessorExternalizableFailedTest.class);
         suite.addTestSuite(IgniteCacheEntryProcessorCallTest.class);
-        GridTestUtils.addTestIfNeeded(suite, 
CacheEntryProcessorCopySelfTest.class, ignoredTests);
         suite.addTestSuite(IgniteCacheTxNearEnabledInvokeTest.class);
         suite.addTestSuite(IgniteCacheTxLocalInvokeTest.class);
         suite.addTestSuite(IgniteCrossCacheTxStoreSelfTest.class);
 
+        // TODO GG-11148: include test when implemented.
+        // Test fails due to incorrect handling of 
CacheConfiguration#getCopyOnRead() and
+        // CacheObjectContext#storeValue() properties. Heap storage should be 
redesigned in this ticket.
+        //GridTestUtils.addTestIfNeeded(suite, 
CacheEntryProcessorCopySelfTest.class, ignoredTests);
+
         suite.addTestSuite(IgnitePutAllLargeBatchSelfTest.class);
         
suite.addTestSuite(IgnitePutAllUpdateNonPreloadedPartitionSelfTest.class);
 

Reply via email to