mirror of https://github.com/apache/lucene.git
disable multiplier to prevent test from OOM'ing until its more ram efficient
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1367392 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
1231dafae2
commit
c81d882c5b
|
@ -196,7 +196,8 @@ public class TestPostingsFormat extends LuceneTestCase {
|
|||
term = "low_" + term;
|
||||
}
|
||||
|
||||
numDocs *= RANDOM_MULTIPLIER;
|
||||
// TODO: reduce the ram usage of this test so we can safely do this
|
||||
// numDocs *= RANDOM_MULTIPLIER;
|
||||
|
||||
List<Posting> termPostings = new ArrayList<Posting>();
|
||||
postings.put(new BytesRef(term), termPostings);
|
||||
|
|
Loading…
Reference in New Issue