Thanks Rob, I always for get about that when backporting.
: Date: Sat, 11 Jan 2014 12:37:36 -0000 : From: [email protected] : Reply-To: [email protected] : To: [email protected] : Subject: svn commit: r1557370 - in : /lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr: : CursorPagingTest.java cloud/DistribCursorPagingTest.java : : Author: rmuir : Date: Sat Jan 11 12:37:35 2014 : New Revision: 1557370 : : URL: http://svn.apache.org/r1557370 : Log: : SOLR-5463: disable codecs that don't support docvalues in these tests : : Modified: : lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/CursorPagingTest.java : lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud/DistribCursorPagingTest.java : : Modified: lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/CursorPagingTest.java : URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/CursorPagingTest.java?rev=1557370&r1=1557369&r2=1557370&view=diff : ============================================================================== : --- lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/CursorPagingTest.java (original) : +++ lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/CursorPagingTest.java Sat Jan 11 12:37:35 2014 : @@ -18,6 +18,7 @@ : package org.apache.solr; : : import org.apache.lucene.util._TestUtil; : +import org.apache.lucene.util.LuceneTestCase.SuppressCodecs; : import org.apache.lucene.util.SentinelIntSet; : import org.apache.solr.core.SolrInfoMBean; : import org.apache.solr.common.SolrInputDocument; : @@ -48,6 +49,7 @@ import org.junit.After; : /** : * Tests of deep paging using {@link CursorMark} and {@link #CURSOR_MARK_PARAM}. : */ : +@SuppressCodecs("Lucene3x") : public class CursorPagingTest extends SolrTestCaseJ4 { : : /** solrconfig.xml file name, shared with other cursor related tests */ : : Modified: lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud/DistribCursorPagingTest.java : URL: http://svn.apache.org/viewvc/lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud/DistribCursorPagingTest.java?rev=1557370&r1=1557369&r2=1557370&view=diff : ============================================================================== : --- lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud/DistribCursorPagingTest.java (original) : +++ lucene/dev/branches/branch_4x/solr/core/src/test/org/apache/solr/cloud/DistribCursorPagingTest.java Sat Jan 11 12:37:35 2014 : @@ -17,6 +17,7 @@ : package org.apache.solr.cloud; : : import org.apache.lucene.util.LuceneTestCase.Slow; : +import org.apache.lucene.util.LuceneTestCase.SuppressCodecs; : import org.apache.lucene.util._TestUtil; : import org.apache.lucene.util.SentinelIntSet; : import org.apache.solr.CursorPagingTest; : @@ -52,6 +53,7 @@ import java.util.Map; : * @see CursorPagingTest : */ : @Slow : +@SuppressCodecs("Lucene3x") : public class DistribCursorPagingTest extends AbstractFullDistribZkTestBase { : : public DistribCursorPagingTest() { : : : -Hoss http://www.lucidworks.com/ --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
