don't use MemCodec/SimpleText for this test

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1188089 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2011-10-24 11:00:29 +00:00
parent 3c547fc36a
commit af02ff68ad
1 changed files with 4 additions and 1 deletions

View File

@ -23,14 +23,15 @@ import java.util.ArrayList;
import java.util.Collections; import java.util.Collections;
import java.util.List; import java.util.List;
import java.util.Random; import java.util.Random;
import java.util.concurrent.atomic.AtomicInteger;
import java.util.concurrent.atomic.AtomicBoolean; import java.util.concurrent.atomic.AtomicBoolean;
import java.util.concurrent.atomic.AtomicInteger;
import org.apache.lucene.analysis.*; import org.apache.lucene.analysis.*;
import org.apache.lucene.document.Document; import org.apache.lucene.document.Document;
import org.apache.lucene.document.FieldType; import org.apache.lucene.document.FieldType;
import org.apache.lucene.document.StringField; import org.apache.lucene.document.StringField;
import org.apache.lucene.document.TextField; import org.apache.lucene.document.TextField;
import org.apache.lucene.index.codecs.CodecProvider;
import org.apache.lucene.search.IndexSearcher; import org.apache.lucene.search.IndexSearcher;
import org.apache.lucene.search.ScoreDoc; import org.apache.lucene.search.ScoreDoc;
import org.apache.lucene.search.TermQuery; import org.apache.lucene.search.TermQuery;
@ -896,6 +897,8 @@ public class TestIndexWriterDelete extends LuceneTestCase {
} }
public void testIndexingThenDeleting() throws Exception { public void testIndexingThenDeleting() throws Exception {
assumeFalse("This test cannot run with Memory codec", CodecProvider.getDefault().getFieldCodec("field").equals("Memory"));
assumeFalse("This test cannot run with SimpleText codec", CodecProvider.getDefault().getFieldCodec("field").equals("SimpleText"));
final Random r = random; final Random r = random;
Directory dir = newDirectory(); Directory dir = newDirectory();
// note this test explicitly disables payloads // note this test explicitly disables payloads