Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAndrew Johnson2020-11-01 22:53:05 +0000
committerAndrew Johnson2020-11-01 22:53:05 +0000
commit6de588608f9207eed67574be0e41eb63d3fe769c (patch)
tree043f1e9a87e47710a35fb585000d10821ffbd6b3
parentfeda83c3909a7bb3feb953d1e58444ca0e3e59f0 (diff)
downloadorg.eclipse.mat-6de588608f9207eed67574be0e41eb63d3fe769c.tar.gz
org.eclipse.mat-6de588608f9207eed67574be0e41eb63d3fe769c.tar.xz
org.eclipse.mat-6de588608f9207eed67574be0e41eb63d3fe769c.zip
568417: Build changes for migration of MAT JIPP to new CI infrastructure
Try solving OOM error on running tests in new CI Task-Url: https://bugs.eclipse.org/bugs/show_bug.cgi?id=568417 Change-Id: Ic276be72dbb4b567459f4519cb26eeda06e57164
-rw-r--r--plugins/org.eclipse.mat.tests/src/org/eclipse/mat/tests/collect/ExtractCollectionEntriesTest3.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/plugins/org.eclipse.mat.tests/src/org/eclipse/mat/tests/collect/ExtractCollectionEntriesTest3.java b/plugins/org.eclipse.mat.tests/src/org/eclipse/mat/tests/collect/ExtractCollectionEntriesTest3.java
index a7a2c29d..b8c5a25a 100644
--- a/plugins/org.eclipse.mat.tests/src/org/eclipse/mat/tests/collect/ExtractCollectionEntriesTest3.java
+++ b/plugins/org.eclipse.mat.tests/src/org/eclipse/mat/tests/collect/ExtractCollectionEntriesTest3.java
@@ -12,8 +12,8 @@ package org.eclipse.mat.tests.collect;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.hamcrest.CoreMatchers.notNullValue;
-import static org.hamcrest.core.IsNot.not;
import static org.hamcrest.MatcherAssert.assertThat;
+import static org.hamcrest.core.IsNot.not;
import static org.hamcrest.number.OrderingComparison.greaterThan;
import static org.junit.Assume.assumeThat;
@@ -34,6 +34,7 @@ import org.eclipse.mat.tests.CreateCollectionDump;
import org.eclipse.mat.tests.TestSnapshots;
import org.eclipse.mat.util.IProgressListener;
import org.eclipse.mat.util.VoidProgressListener;
+import org.junit.Ignore;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.Parameterized;
@@ -216,6 +217,7 @@ public class ExtractCollectionEntriesTest3 extends ExtractCollectionEntriesTest2
return parms;
}
+ @Ignore("OOM error in new CI build")
@Test
public void testCollections() throws SnapshotException
{

Back to the top