mirror of https://github.com/apache/lucene.git
add missing timeout for this monster test
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1588180 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1d50a08415
commit
6565bc73fd
|
@ -17,23 +17,37 @@ package org.apache.lucene.index;
|
||||||
* limitations under the License.
|
* limitations under the License.
|
||||||
*/
|
*/
|
||||||
|
|
||||||
import org.apache.lucene.util.*;
|
|
||||||
import org.apache.lucene.util.LuceneTestCase.Monster;
|
|
||||||
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
|
|
||||||
import org.apache.lucene.store.*;
|
|
||||||
import org.apache.lucene.search.*;
|
|
||||||
import org.apache.lucene.analysis.*;
|
|
||||||
import org.apache.lucene.analysis.tokenattributes.*;
|
|
||||||
import org.apache.lucene.document.*;
|
|
||||||
import org.apache.lucene.index.FieldInfo.IndexOptions;
|
|
||||||
import org.junit.Ignore;
|
|
||||||
|
|
||||||
import java.io.IOException;
|
import java.io.IOException;
|
||||||
import java.util.ArrayList;
|
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 org.apache.lucene.analysis.MockAnalyzer;
|
||||||
|
import org.apache.lucene.analysis.TokenStream;
|
||||||
|
import org.apache.lucene.analysis.tokenattributes.CharTermAttribute;
|
||||||
|
import org.apache.lucene.analysis.tokenattributes.TermToBytesRefAttribute;
|
||||||
|
import org.apache.lucene.document.Document;
|
||||||
|
import org.apache.lucene.document.Field;
|
||||||
|
import org.apache.lucene.document.FieldType;
|
||||||
|
import org.apache.lucene.document.TextField;
|
||||||
|
import org.apache.lucene.index.FieldInfo.IndexOptions;
|
||||||
|
import org.apache.lucene.search.IndexSearcher;
|
||||||
|
import org.apache.lucene.search.TermQuery;
|
||||||
|
import org.apache.lucene.store.BaseDirectoryWrapper;
|
||||||
|
import org.apache.lucene.store.MockDirectoryWrapper;
|
||||||
|
import org.apache.lucene.util.Attribute;
|
||||||
|
import org.apache.lucene.util.AttributeImpl;
|
||||||
|
import org.apache.lucene.util.AttributeSource.AttributeFactory;
|
||||||
|
import org.apache.lucene.util.BytesRef;
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.Monster;
|
||||||
|
import org.apache.lucene.util.LuceneTestCase.SuppressCodecs;
|
||||||
|
import org.apache.lucene.util.LuceneTestCase;
|
||||||
|
import org.apache.lucene.util.TestUtil;
|
||||||
|
import org.apache.lucene.util.TimeUnits;
|
||||||
|
import org.junit.Ignore;
|
||||||
|
import com.carrotsearch.randomizedtesting.annotations.TimeoutSuite;
|
||||||
|
|
||||||
// NOTE: SimpleText codec will consume very large amounts of
|
// NOTE: SimpleText codec will consume very large amounts of
|
||||||
// disk (but, should run successfully). Best to run w/
|
// disk (but, should run successfully). Best to run w/
|
||||||
// -Dtests.codec=<current codec>, and w/ plenty of RAM, eg:
|
// -Dtests.codec=<current codec>, and w/ plenty of RAM, eg:
|
||||||
|
@ -44,6 +58,7 @@ import java.util.Random;
|
||||||
//
|
//
|
||||||
@SuppressCodecs({ "SimpleText", "Memory", "Direct" })
|
@SuppressCodecs({ "SimpleText", "Memory", "Direct" })
|
||||||
@Monster("very slow, use 8g heap")
|
@Monster("very slow, use 8g heap")
|
||||||
|
@TimeoutSuite(millis = 6 * TimeUnits.HOUR)
|
||||||
public class Test2BTerms extends LuceneTestCase {
|
public class Test2BTerms extends LuceneTestCase {
|
||||||
|
|
||||||
private final static int TOKEN_LEN = 5;
|
private final static int TOKEN_LEN = 5;
|
||||||
|
|
Loading…
Reference in New Issue