LUCENE-5858: remove some test cruft

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene5858@1621764 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2014-09-01 13:16:50 +00:00
parent dcadf7ef6f
commit 5afc7cda1f
24 changed files with 0 additions and 29 deletions

View File

@ -46,7 +46,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
/** /**
* trivial test of CollationDocValuesField * trivial test of CollationDocValuesField
*/ */
@SuppressCodecs("Lucene3x")
public class TestCollationDocValuesField extends LuceneTestCase { public class TestCollationDocValuesField extends LuceneTestCase {
public void testBasic() throws Exception { public void testBasic() throws Exception {

View File

@ -46,7 +46,6 @@ import com.ibm.icu.util.ULocale;
/** /**
* trivial test of ICUCollationDocValuesField * trivial test of ICUCollationDocValuesField
*/ */
@SuppressCodecs("Lucene3x")
public class TestICUCollationDocValuesField extends LuceneTestCase { public class TestICUCollationDocValuesField extends LuceneTestCase {
public void testBasic() throws Exception { public void testBasic() throws Exception {

View File

@ -34,7 +34,6 @@ import java.io.Reader;
* Testcase for {@link SimpleNaiveBayesClassifier} * Testcase for {@link SimpleNaiveBayesClassifier}
*/ */
// TODO : eventually remove this if / when fallback methods exist for all un-supportable codec methods (see LUCENE-4872) // TODO : eventually remove this if / when fallback methods exist for all un-supportable codec methods (see LUCENE-4872)
@LuceneTestCase.SuppressCodecs("Lucene3x")
public class SimpleNaiveBayesClassifierTest extends ClassificationTestBase<BytesRef> { public class SimpleNaiveBayesClassifierTest extends ClassificationTestBase<BytesRef> {
@Test @Test

View File

@ -18,7 +18,6 @@ import org.apache.lucene.util.Bits;
import org.apache.lucene.util.BytesRef; import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.IOUtils; import org.apache.lucene.util.IOUtils;
import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.LuceneTestCase;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.TestUtil; import org.apache.lucene.util.TestUtil;
import com.carrotsearch.randomizedtesting.generators.RandomPicks; import com.carrotsearch.randomizedtesting.generators.RandomPicks;
@ -40,7 +39,6 @@ import com.carrotsearch.randomizedtesting.generators.RandomPicks;
* limitations under the License. * limitations under the License.
*/ */
@SuppressCodecs({"Lucene40","Lucene41","Lucene42","Lucene45"})
public class TestMixedDocValuesUpdates extends LuceneTestCase { public class TestMixedDocValuesUpdates extends LuceneTestCase {
public void testManyReopensAndFields() throws Exception { public void testManyReopensAndFields() throws Exception {

View File

@ -28,7 +28,6 @@ import org.apache.lucene.util.Bits;
import org.apache.lucene.util.BytesRef; import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.IOUtils; import org.apache.lucene.util.IOUtils;
import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.LuceneTestCase;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.TestUtil; import org.apache.lucene.util.TestUtil;
import org.junit.Test; import org.junit.Test;
@ -51,7 +50,6 @@ import com.carrotsearch.randomizedtesting.generators.RandomPicks;
* limitations under the License. * limitations under the License.
*/ */
@SuppressCodecs({"Lucene40","Lucene41","Lucene42","Lucene45"})
@SuppressWarnings("resource") @SuppressWarnings("resource")
public class TestNumericDocValuesUpdates extends LuceneTestCase { public class TestNumericDocValuesUpdates extends LuceneTestCase {

View File

@ -40,7 +40,6 @@ import org.apache.lucene.util.UnicodeUtil;
/** /**
* Tests the DocTermOrdsRangeFilter * Tests the DocTermOrdsRangeFilter
*/ */
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // needs SORTED_SET
public class TestDocTermOrdsRangeFilter extends LuceneTestCase { public class TestDocTermOrdsRangeFilter extends LuceneTestCase {
protected IndexSearcher searcher1; protected IndexSearcher searcher1;
protected IndexSearcher searcher2; protected IndexSearcher searcher2;

View File

@ -42,7 +42,6 @@ import org.apache.lucene.util.UnicodeUtil;
/** /**
* Tests the DocTermOrdsRewriteMethod * Tests the DocTermOrdsRewriteMethod
*/ */
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // needs SORTED_SET
public class TestDocTermOrdsRewriteMethod extends LuceneTestCase { public class TestDocTermOrdsRewriteMethod extends LuceneTestCase {
protected IndexSearcher searcher1; protected IndexSearcher searcher1;
protected IndexSearcher searcher2; protected IndexSearcher searcher2;

View File

@ -34,7 +34,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
/** /**
* *
*/ */
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // suppress codecs without missing
public class TestFieldValueFilter extends LuceneTestCase { public class TestFieldValueFilter extends LuceneTestCase {
public void testFieldValueFilterNoValue() throws IOException { public void testFieldValueFilterNoValue() throws IOException {

View File

@ -48,7 +48,6 @@ import org.junit.AfterClass;
import org.junit.BeforeClass; import org.junit.BeforeClass;
/** tests BooleanScorer2's minShouldMatch */ /** tests BooleanScorer2's minShouldMatch */
@SuppressCodecs({"Lucene40", "Lucene41"})
public class TestMinShouldMatch2 extends LuceneTestCase { public class TestMinShouldMatch2 extends LuceneTestCase {
static Directory dir; static Directory dir;
static DirectoryReader r; static DirectoryReader r;

View File

@ -48,7 +48,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
* | * |
* \./ * \./
*/ */
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // avoid codecs that don't support "missing"
public class TestSort extends LuceneTestCase { public class TestSort extends LuceneTestCase {
/** Tests sorting on type string */ /** Tests sorting on type string */

View File

@ -30,8 +30,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.NumericUtils; import org.apache.lucene.util.NumericUtils;
/** Simple tests for SortedNumericSortField */ /** Simple tests for SortedNumericSortField */
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42", "Lucene45", "Lucene46"})
// avoid codecs that don't support sortednumeric
public class TestSortedNumericSortField extends LuceneTestCase { public class TestSortedNumericSortField extends LuceneTestCase {
public void testEmptyIndex() throws Exception { public void testEmptyIndex() throws Exception {

View File

@ -30,7 +30,6 @@ import org.apache.lucene.util.LuceneTestCase;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs; import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
/** Simple tests for SortedSetSortField, indexing the sortedset up front */ /** Simple tests for SortedSetSortField, indexing the sortedset up front */
@SuppressCodecs({"Lucene40", "Lucene41"}) // avoid codecs that don't support sortedset
public class TestSortedSetSortField extends LuceneTestCase { public class TestSortedSetSortField extends LuceneTestCase {
public void testEmptyIndex() throws Exception { public void testEmptyIndex() throws Exception {

View File

@ -23,7 +23,6 @@ import org.apache.lucene.search.TopDocs;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs; import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.LuceneTestCase;
@SuppressCodecs("Lucene3x")
public class TestDistanceFacetsExample extends LuceneTestCase { public class TestDistanceFacetsExample extends LuceneTestCase {
public void testSimple() throws Exception { public void testSimple() throws Exception {

View File

@ -25,7 +25,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.LuceneTestCase;
import org.junit.Test; import org.junit.Test;
@SuppressCodecs("Lucene3x")
public class TestRangeFacetsExample extends LuceneTestCase { public class TestRangeFacetsExample extends LuceneTestCase {
@Test @Test

View File

@ -27,7 +27,6 @@ import org.junit.Test;
// We require sorted set DVs: // We require sorted set DVs:
@SuppressCodecs({"Lucene40", "Lucene41"})
public class TestSimpleSortedSetFacetsExample extends LuceneTestCase { public class TestSimpleSortedSetFacetsExample extends LuceneTestCase {
@Test @Test

View File

@ -37,7 +37,6 @@ import org.apache.lucene.store.Directory;
import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.LuceneTestCase;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs; import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
@SuppressCodecs("Lucene3x")
public class TestExpressionValueSource extends LuceneTestCase { public class TestExpressionValueSource extends LuceneTestCase {
DirectoryReader reader; DirectoryReader reader;
Directory dir; Directory dir;

View File

@ -58,7 +58,6 @@ import org.apache.lucene.util.mutable.MutableValue;
import org.apache.lucene.util.mutable.MutableValueStr; import org.apache.lucene.util.mutable.MutableValueStr;
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // we need missing support... i think?
public class DistinctValuesCollectorTest extends AbstractGroupingTestCase { public class DistinctValuesCollectorTest extends AbstractGroupingTestCase {
private final static NullComparator nullComparator = new NullComparator(); private final static NullComparator nullComparator = new NullComparator();

View File

@ -52,8 +52,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.TestUtil; import org.apache.lucene.util.TestUtil;
// Need SSDV, ord=-1 for missing:
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"})
public class GroupFacetCollectorTest extends AbstractGroupingTestCase { public class GroupFacetCollectorTest extends AbstractGroupingTestCase {
public void testSimple() throws Exception { public void testSimple() throws Exception {

View File

@ -41,7 +41,6 @@ import org.apache.lucene.search.grouping.term.TermSecondPassGroupingCollector;
import org.apache.lucene.store.Directory; import org.apache.lucene.store.Directory;
import org.apache.lucene.util.BytesRef; import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.LuceneTestCase;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.TestUtil; import org.apache.lucene.util.TestUtil;
import org.apache.lucene.util.mutable.MutableValue; import org.apache.lucene.util.mutable.MutableValue;
import org.apache.lucene.util.mutable.MutableValueStr; import org.apache.lucene.util.mutable.MutableValueStr;
@ -55,7 +54,6 @@ import java.util.*;
// - test ties // - test ties
// - test compound sort // - test compound sort
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // we need missing support... i think?
public class TestGrouping extends LuceneTestCase { public class TestGrouping extends LuceneTestCase {
public void testBasic() throws Exception { public void testBasic() throws Exception {

View File

@ -35,7 +35,6 @@ import org.apache.lucene.store.Directory;
import org.apache.lucene.util.*; import org.apache.lucene.util.*;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs; import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // needs working "missing"
public class TestBlockJoin extends LuceneTestCase { public class TestBlockJoin extends LuceneTestCase {
// One resume... // One resume...

View File

@ -72,7 +72,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.util.TestUtil; import org.apache.lucene.util.TestUtil;
import org.junit.Test; import org.junit.Test;
@SuppressCodecs({"Lucene40", "Lucene41", "Lucene42"}) // we need SortedSet, docsWithField
public class TestJoinUtil extends LuceneTestCase { public class TestJoinUtil extends LuceneTestCase {
public void testSimple() throws Exception { public void testSimple() throws Exception {

View File

@ -31,7 +31,6 @@ import org.apache.lucene.util.BytesRef;
import org.apache.lucene.util.LuceneTestCase; import org.apache.lucene.util.LuceneTestCase;
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs; import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
@SuppressCodecs({"Lucene40", "Lucene41"}) // avoid codecs that don't support sortedset
public class TestSortedSetFieldSource extends LuceneTestCase { public class TestSortedSetFieldSource extends LuceneTestCase {
public void testSimple() throws Exception { public void testSimple() throws Exception {
Directory dir = newDirectory(); Directory dir = newDirectory();

View File

@ -45,7 +45,6 @@ import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
/** /**
*/ */
@SuppressCodecs("Lucene3x") // binary terms
public class TestAnalyzingQueryParser extends LuceneTestCase { public class TestAnalyzingQueryParser extends LuceneTestCase {
private final static String FIELD = "field"; private final static String FIELD = "field";

View File

@ -35,7 +35,6 @@ import org.eclipse.jetty.util.ssl.SslContextFactory;
import org.eclipse.jetty.util.thread.QueuedThreadPool; import org.eclipse.jetty.util.thread.QueuedThreadPool;
import org.junit.AfterClass; import org.junit.AfterClass;
@SuppressCodecs("Lucene3x")
public abstract class ReplicatorTestCase extends LuceneTestCase { public abstract class ReplicatorTestCase extends LuceneTestCase {
private static HttpClientConnectionManager clientConnectionManager; private static HttpClientConnectionManager clientConnectionManager;