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
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 @@
   }
 
   @Test
+  @Ignore("this test requires 1G to run")
   public void testLargeBasicList() {
     int capacity = 123456789;
     WArrayList<LongWritable> longSet = LongTypeOps.INSTANCE.createArrayList(capacity);