You are viewing a plain text version of this content. The canonical link for it is here.
Posted to xbean-scm@geronimo.apache.org by gn...@apache.org on 2008/05/07 09:42:56 UTC

svn commit: r654018 - in /geronimo/xbean/trunk: pom.xml xbean-finder/src/test/java/org/apache/xbean/finder/ResourceFinderTest.java

Author: gnodet
Date: Wed May  7 00:42:55 2008
New Revision: 654018

URL: http://svn.apache.org/viewvc?rev=654018&view=rev
Log:
Disable failing test

Modified:
    geronimo/xbean/trunk/pom.xml
    geronimo/xbean/trunk/xbean-finder/src/test/java/org/apache/xbean/finder/ResourceFinderTest.java

Modified: geronimo/xbean/trunk/pom.xml
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/pom.xml?rev=654018&r1=654017&r2=654018&view=diff
==============================================================================
--- geronimo/xbean/trunk/pom.xml (original)
+++ geronimo/xbean/trunk/pom.xml Wed May  7 00:42:55 2008
@@ -275,7 +275,7 @@
                 <artifactId>maven-release-plugin</artifactId>
                 <version>2.0-beta-7</version>
                 <configuration>
-                    <preparationGoals>clean,verify,clean,install</preparationGoals>
+                    <preparationGoals>clean,verify,install</preparationGoals>
                     <autoVersionSubmodules>true</autoVersionSubmodules>
                 </configuration>
             </plugin>

Modified: geronimo/xbean/trunk/xbean-finder/src/test/java/org/apache/xbean/finder/ResourceFinderTest.java
URL: http://svn.apache.org/viewvc/geronimo/xbean/trunk/xbean-finder/src/test/java/org/apache/xbean/finder/ResourceFinderTest.java?rev=654018&r1=654017&r2=654018&view=diff
==============================================================================
--- geronimo/xbean/trunk/xbean-finder/src/test/java/org/apache/xbean/finder/ResourceFinderTest.java (original)
+++ geronimo/xbean/trunk/xbean-finder/src/test/java/org/apache/xbean/finder/ResourceFinderTest.java Wed May  7 00:42:55 2008
@@ -371,6 +371,14 @@
     }
 
 
+    /*
+     * Disable test because it's failing its purpose:
+     *   - when running in maven in a clean build, no urls are found
+     *       so the test runs with the ResourceFinder using the classloader
+     *       instead of urls
+     *   - when running on a non clean build in maven, one url is found,
+     *       but the test fails
+
     public void testUrlConstructor() throws Exception {
         List<URL> all = resourceFinder.findAll("MANIFEST.MF");
 
@@ -404,6 +412,7 @@
         testMapAllProperties();
         testMapAvailableProperties();
     }
+    */
 
 
 }