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:
Robert Muir 2012-07-31 02:15:44 +00:00
parent 1231dafae2
commit c81d882c5b
1 changed files with 2 additions and 1 deletions

View File

@ -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);