mirror of https://github.com/apache/lucene.git
SOLR-12759: Disable ExtractingRequestHandlerTest on JDK 11 due to
JDK bug with timezone locale and Date.toString
This commit is contained in:
parent
a537aa20c1
commit
623cdf29ad
|
@ -41,6 +41,8 @@ public class ExtractingRequestHandlerTest extends SolrTestCaseJ4 {
|
|||
|
||||
@BeforeClass
|
||||
public static void beforeClass() throws Exception {
|
||||
assertFalse("SOLR-12759 JDK 11 (1st release) and Tika 1.x can result in extracting dates in a bad format.",
|
||||
System.getProperty("java.version").startsWith("11"));
|
||||
initCore("solrconfig.xml", "schema.xml", getFile("extraction/solr").getAbsolutePath());
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue