You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by ja...@apache.org on 2015/10/09 23:19:46 UTC

svn commit: r1707817 - in /lucene/dev/branches/branch_5x/solr: CHANGES.txt solrj/src/test/org/apache/solr/client/solrj/response/QueryResponseTest.java

Author: janhoy
Date: Fri Oct  9 21:19:46 2015
New Revision: 1707817

URL: http://svn.apache.org/viewvc?rev=1707817&view=rev
Log:
SOLR-8150: Fix build failure due to too much output from QueryResponseTest (backport)

Modified:
    lucene/dev/branches/branch_5x/solr/CHANGES.txt
    lucene/dev/branches/branch_5x/solr/solrj/src/test/org/apache/solr/client/solrj/response/QueryResponseTest.java

Modified: lucene/dev/branches/branch_5x/solr/CHANGES.txt
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/CHANGES.txt?rev=1707817&r1=1707816&r2=1707817&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/CHANGES.txt (original)
+++ lucene/dev/branches/branch_5x/solr/CHANGES.txt Fri Oct  9 21:19:46 2015
@@ -223,6 +223,8 @@ Other Changes
 
 * SOLR-8025: remove unnecessary ResponseBuilder.getQueryCommand() calls (Christine Poerschke)
 
+* SOLR-8150: Fix build failure due to too much output from QueryResponseTest (janhoy)
+
 ==================  5.3.1 ==================
 
 Bug Fixes

Modified: lucene/dev/branches/branch_5x/solr/solrj/src/test/org/apache/solr/client/solrj/response/QueryResponseTest.java
URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_5x/solr/solrj/src/test/org/apache/solr/client/solrj/response/QueryResponseTest.java?rev=1707817&r1=1707816&r2=1707817&view=diff
==============================================================================
--- lucene/dev/branches/branch_5x/solr/solrj/src/test/org/apache/solr/client/solrj/response/QueryResponseTest.java (original)
+++ lucene/dev/branches/branch_5x/solr/solrj/src/test/org/apache/solr/client/solrj/response/QueryResponseTest.java Fri Oct  9 21:19:46 2015
@@ -20,6 +20,7 @@ package org.apache.solr.client.solrj.res
 import junit.framework.Assert;
 
 import org.apache.lucene.util.LuceneTestCase;
+import org.apache.lucene.util.TestRuleLimitSysouts.Limit;
 import org.apache.solr.client.solrj.impl.XMLResponseParser;
 import org.apache.solr.common.SolrDocumentList;
 import org.apache.solr.common.util.DateUtil;
@@ -38,6 +39,7 @@ import java.util.List;
  * 
  * @since solr 1.3
  */
+@Limit(bytes=20000)
 public class QueryResponseTest extends LuceneTestCase {
   @Test
   public void testDateFacets() throws Exception   {