Author: robbie
Date: Tue Aug  9 19:40:41 2011
New Revision: 1155516

URL: http://svn.apache.org/viewvc?rev=1155516&view=rev
Log:
QPID-3402: also use a semi-colon deliminator instead of just whitespace, so as 
to allow identifying the excludes files correctly when the directory structure 
includes spaces

Modified:
    
qpid/trunk/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java
    qpid/trunk/qpid/java/module.xml

Modified: 
qpid/trunk/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java
URL: 
http://svn.apache.org/viewvc/qpid/trunk/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java?rev=1155516&r1=1155515&r2=1155516&view=diff
==============================================================================
--- 
qpid/trunk/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java
 (original)
+++ 
qpid/trunk/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java
 Tue Aug  9 19:40:41 2011
@@ -59,7 +59,7 @@ public class QpidTestCase extends TestCa
             String exclusionListString = 
System.getProperties().getProperty("test.excludelist", "");
             List<String> exclusionList = new ArrayList<String>();
 
-            for (String uri : exclusionListURIs.split("\\s+"))
+            for (String uri : exclusionListURIs.split(";\\s+"))
             {
                 File file = new File(uri);
                 if (file.exists())

Modified: qpid/trunk/qpid/java/module.xml
URL: 
http://svn.apache.org/viewvc/qpid/trunk/qpid/java/module.xml?rev=1155516&r1=1155515&r2=1155516&view=diff
==============================================================================
--- qpid/trunk/qpid/java/module.xml (original)
+++ qpid/trunk/qpid/java/module.xml Tue Aug  9 19:40:41 2011
@@ -316,7 +316,7 @@
   <property file="${build.scratch}/test-${profile}.properties"/>
 
   <map property="test.excludefiles" value="${test.excludes}">
-    <globmapper from="*" to="${test.profiles}/*"/>
+    <globmapper from="*" to="${test.profiles}/*;"/>
   </map>
 
   <condition property="dontruntest" value="dontruntest" else="runtest">



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscr...@qpid.apache.org

Reply via email to