mirror of https://github.com/apache/lucene.git
SOLR-5793, SOLR-5792, SOLR-5791: disable these three tests on J9 JVM
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1572706 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7877ebeb63
commit
fcec01ccda
|
@ -30,6 +30,12 @@ import org.junit.BeforeClass;
|
|||
*/
|
||||
public class DistributedQueryElevationComponentTest extends BaseDistributedSearchTestCase {
|
||||
|
||||
@BeforeClass
|
||||
public static void betterNotBeJ9() {
|
||||
assumeFalse("FIXME: SOLR-5791: This test fails under J9",
|
||||
System.getProperty("java.vm.info", "<?>").contains("IBM J9"));
|
||||
}
|
||||
|
||||
public DistributedQueryElevationComponentTest() {
|
||||
fixShardCount = true;
|
||||
shardCount = 3;
|
||||
|
|
|
@ -19,8 +19,14 @@ package org.apache.solr.handler.component;
|
|||
|
||||
import org.apache.solr.BaseDistributedSearchTestCase;
|
||||
import org.apache.solr.common.params.TermVectorParams;
|
||||
import org.junit.BeforeClass;
|
||||
|
||||
public class TermVectorComponentDistributedTest extends BaseDistributedSearchTestCase {
|
||||
@BeforeClass
|
||||
public static void betterNotBeJ9() {
|
||||
assumeFalse("FIXME: SOLR-5792: This test fails under J9",
|
||||
System.getProperty("java.vm.info", "<?>").contains("IBM J9"));
|
||||
}
|
||||
|
||||
@Override
|
||||
public void doTest() throws Exception {
|
||||
|
|
|
@ -47,6 +47,13 @@ import org.junit.Test;
|
|||
*/
|
||||
public class SignatureUpdateProcessorFactoryTest extends SolrTestCaseJ4 {
|
||||
|
||||
@BeforeClass
|
||||
public static void betterNotBeJ9() {
|
||||
assumeFalse("FIXME: SOLR-5793: This test fails under J9",
|
||||
System.getProperty("java.vm.info", "<?>").contains("IBM J9"));
|
||||
}
|
||||
|
||||
|
||||
/** modified by tests as needed */
|
||||
private String chain = "dedupe";
|
||||
|
||||
|
|
Loading…
Reference in New Issue