You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2014/12/19 17:40:58 UTC

svn commit: r1646791 - /lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/util/TestIOUtils.java

Author: mikemccand
Date: Fri Dec 19 16:40:58 2014
New Revision: 1646791

URL: http://svn.apache.org/r1646791
Log:
LUCENE-5951: these test cases can't run on Windows

Modified:
    lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/util/TestIOUtils.java

Modified: lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/util/TestIOUtils.java
URL: http://svn.apache.org/viewvc/lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/util/TestIOUtils.java?rev=1646791&r1=1646790&r2=1646791&view=diff
==============================================================================
--- lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/util/TestIOUtils.java (original)
+++ lucene/dev/trunk/lucene/core/src/test/org/apache/lucene/util/TestIOUtils.java Fri Dec 19 16:40:58 2014
@@ -306,6 +306,7 @@ public class TestIOUtils extends LuceneT
   }
   
   public void testSSD() throws Exception {
+    assumeFalse("windows is not supported", Constants.WINDOWS);
     Path dir = createTempDir();
     dir = FilterPath.unwrap(dir).toRealPath();
     
@@ -329,6 +330,7 @@ public class TestIOUtils extends LuceneT
   }
   
   public void testRotatingPlatters() throws Exception {
+    assumeFalse("windows is not supported", Constants.WINDOWS);
     Path dir = createTempDir();
     dir = FilterPath.unwrap(dir).toRealPath();
     
@@ -352,6 +354,7 @@ public class TestIOUtils extends LuceneT
   }
   
   public void testManyPartitions() throws Exception {
+    assumeFalse("windows is not supported", Constants.WINDOWS);
     Path dir = createTempDir();
     dir = FilterPath.unwrap(dir).toRealPath();