LUCENE-8320: Disable test on windows

irony: currently we don't emulate windows well enough to work on windows!
This commit is contained in:
Simon Willnauer 2018-05-18 19:24:04 +02:00
parent 27c6275c48
commit 82ad857f1a
1 changed files with 3 additions and 0 deletions

View File

@ -28,6 +28,7 @@ import java.util.Collections;
import org.apache.lucene.codecs.CodecUtil; import org.apache.lucene.codecs.CodecUtil;
import org.apache.lucene.mockfile.FilterPath; import org.apache.lucene.mockfile.FilterPath;
import org.apache.lucene.mockfile.WindowsFS; import org.apache.lucene.mockfile.WindowsFS;
import org.apache.lucene.util.Constants;
import org.apache.lucene.util.IOUtils; import org.apache.lucene.util.IOUtils;
// See: https://issues.apache.org/jira/browse/SOLR-12028 Tests cannot remove files on Windows machines occasionally // See: https://issues.apache.org/jira/browse/SOLR-12028 Tests cannot remove files on Windows machines occasionally
@ -93,6 +94,8 @@ public class TestHardLinkCopyDirectoryWrapper extends BaseDirectoryTestCase {
} }
public void testRenameWithHardLink() throws Exception { public void testRenameWithHardLink() throws Exception {
// irony: currently we don't emulate windows well enough to work on windows!
assumeFalse("windows is not supported", Constants.WINDOWS);
Path path = createTempDir(); Path path = createTempDir();
FileSystem fs = new WindowsFS(path.getFileSystem()).getFileSystem(URI.create("file:///")); FileSystem fs = new WindowsFS(path.getFileSystem()).getFileSystem(URI.create("file:///"));
Directory dir1 = new SimpleFSDirectory(new FilterPath(path, fs)); Directory dir1 = new SimpleFSDirectory(new FilterPath(path, fs));