You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by kw...@apache.org on 2018/02/27 22:15:58 UTC

lucene-solr:master: LUCENE-8187: Reduce the count of test iterations for nightly because it was causing timeouts.

Repository: lucene-solr
Updated Branches:
  refs/heads/master 939aedfed -> d21e104de


LUCENE-8187: Reduce the count of test iterations for nightly because it was causing timeouts.


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

Branch: refs/heads/master
Commit: d21e104de2d88147769b976d88c64a254145999e
Parents: 939aedf
Author: Karl Wright <Da...@gmail.com>
Authored: Tue Feb 27 17:14:30 2018 -0500
Committer: Karl Wright <Da...@gmail.com>
Committed: Tue Feb 27 17:15:42 2018 -0500

----------------------------------------------------------------------
 .../src/test/org/apache/lucene/spatial3d/TestGeo3DPoint.java      | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/d21e104d/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/TestGeo3DPoint.java
----------------------------------------------------------------------
diff --git a/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/TestGeo3DPoint.java b/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/TestGeo3DPoint.java
index 9e76cea..861e26e 100644
--- a/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/TestGeo3DPoint.java
+++ b/lucene/spatial3d/src/test/org/apache/lucene/spatial3d/TestGeo3DPoint.java
@@ -477,9 +477,8 @@ public class TestGeo3DPoint extends LuceneTestCase {
   }
 
   @Nightly
-  @BadApple(bugUrl="https://issues.apache.org/jira/browse/SOLR-12028")
   public void testRandomBig() throws Exception {
-    doTestRandom(200000);
+    doTestRandom(50000);
   }
 
   private void doTestRandom(int count) throws Exception {