mirror of https://github.com/apache/lucene.git
LUCENE-6522: mute test temporarily on J9
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1685019 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
50fc8ad31d
commit
413bca718d
|
@ -50,11 +50,19 @@ import org.apache.lucene.index.TermsEnum.SeekStatus;
|
|||
import org.apache.lucene.store.Directory;
|
||||
import org.apache.lucene.util.Bits;
|
||||
import org.apache.lucene.util.BytesRef;
|
||||
import org.apache.lucene.util.Constants;
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
import org.apache.lucene.util.TestUtil;
|
||||
|
||||
public class TestFieldCacheVsDocValues extends LuceneTestCase {
|
||||
|
||||
@Override
|
||||
public void setUp() throws Exception {
|
||||
super.setUp();
|
||||
assumeFalse("test unsupported on J9 temporarily, see https://issues.apache.org/jira/browse/LUCENE-6522",
|
||||
Constants.JAVA_VENDOR.startsWith("IBM"));
|
||||
}
|
||||
|
||||
public void testByteMissingVsFieldCache() throws Exception {
|
||||
int numIterations = atLeast(1);
|
||||
for (int i = 0; i < numIterations; i++) {
|
||||
|
|
Loading…
Reference in New Issue