summaryrefslogtreecommitdiff
path: root/java/common
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2011-08-09 19:40:41 +0000
committerRobert Gemmell <robbie@apache.org>2011-08-09 19:40:41 +0000
commita230a88666d812dd8118d81f99c4e1d788f4f2b0 (patch)
tree8dae868d6e284d4db04e0d307136061b66fb97ee /java/common
parent81a0ab9ece84e779a1df3cb02b562145ffd62310 (diff)
downloadqpid-python-a230a88666d812dd8118d81f99c4e1d788f4f2b0.tar.gz
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
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1155516 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java/common')
-rw-r--r--java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java b/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java
index 89542e8125..862406c767 100644
--- a/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java
+++ b/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java
@@ -59,7 +59,7 @@ public class QpidTestCase extends TestCase
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())