Author: alexparvulescu Date: Mon Feb 23 11:42:38 2015 New Revision: 1661645
URL: http://svn.apache.org/r1661645 Log: OAK-2545 oak-core IT run out of memory - disabled the test Modified: jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/SegmentReferenceLimitTestIT.java Modified: jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/SegmentReferenceLimitTestIT.java URL: http://svn.apache.org/viewvc/jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/SegmentReferenceLimitTestIT.java?rev=1661645&r1=1661644&r2=1661645&view=diff ============================================================================== --- jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/SegmentReferenceLimitTestIT.java (original) +++ jackrabbit/oak/trunk/oak-core/src/test/java/org/apache/jackrabbit/oak/plugins/segment/file/SegmentReferenceLimitTestIT.java Mon Feb 23 11:42:38 2015 @@ -36,6 +36,7 @@ import org.apache.jackrabbit.oak.spi.sta import org.apache.jackrabbit.oak.spi.state.NodeStore; import org.junit.After; import org.junit.Before; +import org.junit.Ignore; import org.junit.Test; import org.slf4j.Logger; import org.slf4j.LoggerFactory; @@ -64,11 +65,14 @@ public class SegmentReferenceLimitTestIT /** * OAK-2294 Corrupt repository after concurrent version operations + * + * TODO Test is currently ignored because of how memory intensive it is * * @see <a * href="https://issues.apache.org/jira/browse/OAK-2294">OAK-2294</a> */ @Test + @Ignore public void corruption() throws IOException, CommitFailedException, ExecutionException, InterruptedException { FileStore fileStore = new FileStore(directory, 1, 0, false); SegmentNodeStore nodeStore = new SegmentNodeStore(fileStore);
