SOLR-4916: add assume false to test for java 8

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1497159 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Robert Miller 2013-06-27 00:31:35 +00:00
parent 8bcc141fb9
commit 4ac141d204
1 changed files with 3 additions and 0 deletions

View File

@ -21,6 +21,7 @@ import java.io.File;
import java.io.IOException;
import org.apache.hadoop.hdfs.MiniDFSCluster;
import org.apache.lucene.util.Constants;
import org.apache.lucene.util.LuceneTestCase.Slow;
import org.apache.solr.cloud.UnloadDistributedZkTest;
import org.junit.AfterClass;
@ -38,6 +39,8 @@ public class HdfsUnloadDistributedZkTest extends UnloadDistributedZkTest {
@BeforeClass
public static void setupClass() throws Exception {
assumeFalse("FIXME: This test fails under Java 8 all the time, see SOLR-4711", Constants.JRE_IS_MINIMUM_JAVA8);
dfsCluster = HdfsTestUtil.setupClass(new File(TEMP_DIR,
HdfsUnloadDistributedZkTest.class.getName() + "_"
+ System.currentTimeMillis()).getAbsolutePath());