You are viewing a plain text version of this content. The canonical link for it is here.
Posted to notifications@ant.apache.org by ma...@apache.org on 2012/08/20 23:43:23 UTC

svn commit: r1375243 - /ant/ivy/core/trunk/test/java/org/apache/ivy/core/retrieve/RetrieveTest.java

Author: maartenc
Date: Mon Aug 20 21:43:23 2012
New Revision: 1375243

URL: http://svn.apache.org/viewvc?rev=1375243&view=rev
Log:
Don't run the testRetrieveWithSymlinksMass test on windows...

Modified:
    ant/ivy/core/trunk/test/java/org/apache/ivy/core/retrieve/RetrieveTest.java

Modified: ant/ivy/core/trunk/test/java/org/apache/ivy/core/retrieve/RetrieveTest.java
URL: http://svn.apache.org/viewvc/ant/ivy/core/trunk/test/java/org/apache/ivy/core/retrieve/RetrieveTest.java?rev=1375243&r1=1375242&r2=1375243&view=diff
==============================================================================
--- ant/ivy/core/trunk/test/java/org/apache/ivy/core/retrieve/RetrieveTest.java (original)
+++ ant/ivy/core/trunk/test/java/org/apache/ivy/core/retrieve/RetrieveTest.java Mon Aug 20 21:43:23 2012
@@ -25,6 +25,7 @@ import java.util.Map;
 
 import junit.framework.TestCase;
 
+import org.apache.commons.lang.SystemUtils;
 import org.apache.ivy.Ivy;
 import org.apache.ivy.core.IvyPatternHelper;
 import org.apache.ivy.core.event.IvyEvent;
@@ -211,6 +212,10 @@ public class RetrieveTest extends TestCa
     }
 
     public void testRetrieveWithSymlinksMass() throws Exception {
+        if (SystemUtils.IS_OS_WINDOWS) {
+            return;
+        }
+        
         // mod1.1 depends on mod1.2
         ResolveReport report = ivy.resolve(new File(
                 "test/repositories/1/org1/mod1.1/ivys/ivy-1.0.xml").toURL(),