mirror of https://github.com/apache/lucene.git
LUCENE-6517: disable test on J9, for now
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1683453 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d9a4127a9d
commit
a2c8b6c7ad
|
@ -25,6 +25,7 @@ import java.nio.file.DirectoryStream;
|
|||
import java.nio.file.Files;
|
||||
import java.nio.file.Path;
|
||||
|
||||
import org.apache.lucene.util.Constants;
|
||||
import org.apache.lucene.util.LuceneTestCase;
|
||||
import org.apache.lucene.util.LuceneTestCase.SuppressFileSystems;
|
||||
|
||||
|
@ -57,6 +58,7 @@ public abstract class MockFileSystemTestCase extends LuceneTestCase {
|
|||
|
||||
/** Test that URIs are not corrumpted */
|
||||
public void testURI() throws IOException {
|
||||
assumeFalse("broken on J9: see https://issues.apache.org/jira/browse/LUCENE-6517", Constants.JAVA_VENDOR.startsWith("IBM"));
|
||||
Path dir = wrap(createTempDir());
|
||||
|
||||
Path f1 = dir.resolve("file1");
|
||||
|
|
Loading…
Reference in New Issue