You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ma...@apache.org on 2020/07/24 03:36:30 UTC

[lucene-solr] branch reference_impl updated: @320 Tone down non nightly run.

This is an automated email from the ASF dual-hosted git repository.

markrmiller pushed a commit to branch reference_impl
in repository https://gitbox.apache.org/repos/asf/lucene-solr.git


The following commit(s) were added to refs/heads/reference_impl by this push:
     new 84f95c9  @320 Tone down non nightly run.
84f95c9 is described below

commit 84f95c90b179808ca6dc391f28d8ad7014a0a22b
Author: markrmiller@gmail.com <ma...@gmail.com>
AuthorDate: Thu Jul 23 22:36:16 2020 -0500

    @320 Tone down non nightly run.
---
 solr/core/src/test/org/apache/solr/search/TestFiltering.java | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/solr/core/src/test/org/apache/solr/search/TestFiltering.java b/solr/core/src/test/org/apache/solr/search/TestFiltering.java
index b2ad9cf..da0307d 100644
--- a/solr/core/src/test/org/apache/solr/search/TestFiltering.java
+++ b/solr/core/src/test/org/apache/solr/search/TestFiltering.java
@@ -406,12 +406,12 @@ public class TestFiltering extends SolrTestCaseJ4 {
 
   @Test
   public void testRandomFiltering() throws Exception {
-    int indexIter=5 * RANDOM_MULTIPLIER;
-    int queryIter=250 * RANDOM_MULTIPLIER;
+    int indexIter=(TEST_NIGHTLY ? 5 : 2) * RANDOM_MULTIPLIER;
+    int queryIter=(TEST_NIGHTLY ? 250 : 25) * RANDOM_MULTIPLIER;
     Model model = new Model();
 
     for (int iiter = 0; iiter<indexIter; iiter++) {
-      model.indexSize = random().nextInt(40 * RANDOM_MULTIPLIER) + 1;
+      model.indexSize = random().nextInt((TEST_NIGHTLY ? 40 : 15) * RANDOM_MULTIPLIER) + 1;
       clearIndex();
 
       for (int i=0; i<model.indexSize; i++) {