Repository: giraph Updated Branches: refs/heads/trunk 8a2ec5ebd -> 07dfe0f23
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/07dfe0f2 Tree: http://git-wip-us.apache.org/repos/asf/giraph/tree/07dfe0f2 Diff: http://git-wip-us.apache.org/repos/asf/giraph/diff/07dfe0f2 Branch: refs/heads/trunk Commit: 07dfe0f23c3aabdb4dd47d2a7a26bbd75934da5f Parents: 8a2ec5e Author: Sergey Edunov <[email protected]> Authored: Wed Jul 13 14:38:02 2016 -0700 Committer: Sergey Edunov <[email protected]> Committed: Wed Jul 13 14:38:02 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/07dfe0f2/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);
