You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by rm...@apache.org on 2016/03/29 15:49:16 UTC

lucene-solr:master: disable test method for deprecated encoding: its too memory-hungry

Repository: lucene-solr
Updated Branches:
  refs/heads/master 5619838e1 -> e5836318d


disable test method for deprecated encoding: its too memory-hungry


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/e5836318
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/e5836318
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/e5836318

Branch: refs/heads/master
Commit: e5836318dd5ab994cca60d63e26b30a1776745b0
Parents: 5619838
Author: Robert Muir <rm...@apache.org>
Authored: Tue Mar 29 09:51:09 2016 -0400
Committer: Robert Muir <rm...@apache.org>
Committed: Tue Mar 29 09:51:09 2016 -0400

----------------------------------------------------------------------
 .../lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java | 5 +++++
 1 file changed, 5 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/e5836318/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
----------------------------------------------------------------------
diff --git a/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java b/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
index e9b4c12..00cc279 100644
--- a/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
+++ b/lucene/spatial/src/test/org/apache/lucene/spatial/geopoint/search/TestLegacyGeoPointQuery.java
@@ -70,4 +70,9 @@ public class TestLegacyGeoPointQuery extends BaseGeoPointTestCase {
   public void testRandomDistanceHuge() throws Exception {
     assumeTrue("legacy encoding is too slow/hangs on this test", false);
   }
+
+  @Override
+  public void testSamePointManyTimes() throws Exception {
+    assumeTrue("legacy encoding goes OOM on this test", false);
+  }
 }