LUCENE-10478: mark Test4GBStoredFields as @Monster (#757)

This commit is contained in:
Tomoko Uchida 2022-03-22 17:58:05 +09:00 committed by GitHub
parent be99178956
commit fa61953afd
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 1 deletions

View File

@ -26,6 +26,7 @@ import org.apache.lucene.tests.analysis.MockAnalyzer;
import org.apache.lucene.tests.codecs.compressing.CompressingCodec;
import org.apache.lucene.tests.store.MockDirectoryWrapper;
import org.apache.lucene.tests.util.LuceneTestCase;
import org.apache.lucene.tests.util.LuceneTestCase.Monster;
import org.apache.lucene.tests.util.LuceneTestCase.SuppressCodecs;
import org.apache.lucene.tests.util.TimeUnits;
import org.apache.lucene.util.BytesRef;
@ -33,9 +34,9 @@ import org.apache.lucene.util.BytesRef;
/** This test creates an index with one segment that is a little larger than 4GB. */
@SuppressCodecs({"SimpleText", "Compressing"})
@TimeoutSuite(millis = 4 * TimeUnits.HOUR)
@Monster("consumes a lot of disk space")
public class Test4GBStoredFields extends LuceneTestCase {
@Nightly
public void test() throws Exception {
assumeWorkingMMapOnWindows();