GIRAPH-1092 TestCollections.testLargeBasicList fails with OOM Summary: This test case requires too much memory to run in Jenkins. Talked to Sergey Pupyrev and we decided to disable it.
Test Plan: none Reviewers: majakabiljo, maja.kabiljo, spupyrev Reviewed By: spupyrev Differential Revision: https://reviews.facebook.net/D60753 Project: http://git-wip-us.apache.org/repos/asf/giraph/repo Commit: http://git-wip-us.apache.org/repos/asf/giraph/commit/3c933792 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/3c933792 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/3c933792 Branch: refs/heads/release-1.2.0 Commit: 3c933792fba709dd878f840fa9094f8884c1f0a9 Parents: 26509d6 Author: Sergey Edunov <[email protected]> Authored: Wed Jul 13 14:38:02 2016 -0700 Committer: Sergey Edunov <[email protected]> Committed: Wed Jul 13 14:41:41 2016 -0700 ---------------------------------------------------------------------- .../src/test/java/org/apache/giraph/types/TestCollections.java | 1 + 1 file changed, 1 insertion(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/giraph/blob/3c933792/giraph-core/src/test/java/org/apache/giraph/types/TestCollections.java ---------------------------------------------------------------------- diff --git a/giraph-core/src/test/java/org/apache/giraph/types/TestCollections.java b/giraph-core/src/test/java/org/apache/giraph/types/TestCollections.java index 97d6a41..12b5dfc 100644 --- a/giraph-core/src/test/java/org/apache/giraph/types/TestCollections.java +++ b/giraph-core/src/test/java/org/apache/giraph/types/TestCollections.java @@ -53,6 +53,7 @@ public class TestCollections { } @Test + @Ignore("this test requires 1G to run") public void testLargeBasicList() { int capacity = 123456789; WArrayList<LongWritable> longSet = LongTypeOps.INSTANCE.createArrayList(capacity);
