disable Direct and Memory for this test to avoid false OOME failures

This commit is contained in:
Mike McCandless 2016-01-25 14:04:36 -05:00
parent c99698b6dd
commit 7b43101902
1 changed files with 2 additions and 0 deletions

View File

@ -337,6 +337,8 @@ public abstract class BaseGeoPointTestCase extends LuceneTestCase {
@Nightly @Nightly
public void testRandomBig() throws Exception { public void testRandomBig() throws Exception {
assumeFalse("Direct codec can OOME on this test", TestUtil.getDocValuesFormat(FIELD_NAME).equals("Direct"));
assumeFalse("Memory codec can OOME on this test", TestUtil.getDocValuesFormat(FIELD_NAME).equals("Memory"));
doTestRandom(200000); doTestRandom(200000);
} }