diff options
| author | Robert Gemmell <robbie@apache.org> | 2011-08-09 23:36:45 +0000 |
|---|---|---|
| committer | Robert Gemmell <robbie@apache.org> | 2011-08-09 23:36:45 +0000 |
| commit | 6af78ed4e7740399a93a53ec3933b8f1dc901568 (patch) | |
| tree | 8912dea7a1d13c20191156002b316bdf2d75f951 /java | |
| parent | 8b2014c24ecbfb14b68956226e3af03dd28a8f9d (diff) | |
| download | qpid-python-6af78ed4e7740399a93a53ec3933b8f1dc901568.tar.gz | |
QPID-3402: revert r1155516, bad things happened without space
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk/qpid@1155972 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'java')
| -rw-r--r-- | java/common/src/test/java/org/apache/qpid/test/utils/QpidTestCase.java | 2 | ||||
| -rw-r--r-- | java/module.xml | 2 |
2 files changed, 2 insertions, 2 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 862406c767..89542e8125 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()) diff --git a/java/module.xml b/java/module.xml index 966d2b9fcc..c7819febf4 100644 --- a/java/module.xml +++ b/java/module.xml @@ -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"> |
