You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by ec...@apache.org on 2014/06/30 21:53:39 UTC

svn commit: r1606895 - in /commons/proper/vfs/trunk: core/pom.xml src/changes/changes.xml

Author: ecki
Date: Mon Jun 30 19:53:38 2014
New Revision: 1606895

URL: http://svn.apache.org/r1606895
Log:
[VFS-529][Tests] Again disable HDFS tests on windows, introduce profile "no-hdfs". Partially reverts r1595534.

Modified:
    commons/proper/vfs/trunk/core/pom.xml
    commons/proper/vfs/trunk/src/changes/changes.xml

Modified: commons/proper/vfs/trunk/core/pom.xml
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/core/pom.xml?rev=1606895&r1=1606894&r2=1606895&view=diff
==============================================================================
--- commons/proper/vfs/trunk/core/pom.xml (original)
+++ commons/proper/vfs/trunk/core/pom.xml Mon Jun 30 19:53:38 2014
@@ -340,5 +340,29 @@
         </plugins>
       </build>
     </profile>
+    <!-- On Windows we disable hdfs tests by default. -->
+    <profile>
+        <id>no-hdfs</id>
+        <activation>
+            <activeByDefault>false</activeByDefault>
+            <os>
+                <family>Windows</family>
+            </os>
+        </activation>
+        <build>
+            <plugins>
+                <plugin>
+                    <groupId>org.apache.maven.plugins</groupId>
+                    <artifactId>maven-surefire-plugin</artifactId>
+                    <configuration>
+                        <excludes>
+                            <exclude>**/HdfsFileProviderTest.java</exclude>
+                            <exclude>**/HdfsFileProviderTestCase.java</exclude>
+                        </excludes>
+                    </configuration>
+                </plugin>
+            </plugins>
+        </build>
+    </profile>
   </profiles>
 </project>

Modified: commons/proper/vfs/trunk/src/changes/changes.xml
URL: http://svn.apache.org/viewvc/commons/proper/vfs/trunk/src/changes/changes.xml?rev=1606895&r1=1606894&r2=1606895&view=diff
==============================================================================
--- commons/proper/vfs/trunk/src/changes/changes.xml (original)
+++ commons/proper/vfs/trunk/src/changes/changes.xml Mon Jun 30 19:53:38 2014
@@ -30,7 +30,7 @@
        [Local][Tests] Avoid IndexOutOfBoundsException when validating local file URIs.
       </action>
       <action issue="VFS-526" dev="ecki" type="update">
-       [HDFS][Tests] Enable HDFS testing on Windows (remove Maven profile "hdfs")
+       [HDFS][Tests] Support HDFS testing on Windows (but keep profile "no-hdfs" enabled on Windows VFS-529).
       </action>
       <action issue="VFS-453" dev="ecki" type="update" due-to="Jiri Syrovy">
        [HTTP][WEBDAV] Add file system options for connect and socket timeout.