diff options
| author | Robert Gemmell <robbie@apache.org> | 2011-08-09 19:40:41 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2011-08-09 19:40:41 +0000 |
| commit | 8d683e6b0ea229e9702555bd2317e5164d0aba89 (patch) | |
| tree | c7339354c86a303da10e9ad48dc9d0e0bc380f43 /qpid/java/common/src/test | |
| parent | c829c344ad65be0c115fdb5a00aa635dcd6f0c9f (diff) | |
| download | qpid-python-8d683e6b0ea229e9702555bd2317e5164d0aba89.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@1155516 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/common/src/test')
| -rw-r--r-- | qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java b/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java index 89542e8125..862406c767 100644 --- a/qpid/java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java +++ b/qpid/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()) |
