summaryrefslogtreecommitdiff
path: root/qpid/java/module.xml
diff options
context:
space:
mode:
authorRafael H. Schloming <rhs@apache.org>2008-05-01 23:03:31 +0000
committerRafael H. Schloming <rhs@apache.org>2008-05-01 23:03:31 +0000
commit4f12cd13c4e858c7473502f47144bb9b246bdef1 (patch)
tree3458a9e0fd404f36f4e48d326aa997fd9dde0ce4 /qpid/java/module.xml
parent73f6113a0343b3b0a044897a504e5d70614cb354 (diff)
downloadqpid-python-4f12cd13c4e858c7473502f47144bb9b246bdef1.tar.gz
QPID-1003: added excludes for framework test classes
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@652705 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/module.xml')
-rw-r--r--qpid/java/module.xml20
1 files changed, 11 insertions, 9 deletions
diff --git a/qpid/java/module.xml b/qpid/java/module.xml
index 443159cc3a..b89291d79f 100644
--- a/qpid/java/module.xml
+++ b/qpid/java/module.xml
@@ -69,11 +69,14 @@
<istrue value="${module.plugin}"/>
</and>
</condition>
- <property name="module.test.jar" location="${build.lib}/${project.name}-${module.name}-tests-${project.version}.jar"/>
+
+ <property name="module.test.jar"
+ location="${build.lib}/${project.name}-${module.name}-tests-${project.version}.jar"/>
<!-- module.depends and module.test.depends are supplied by the importing file -->
- <property name="module.depends" value=""/>
- <property name="module.test.depends" value=""/>
+ <property name="module.depends" value=""/>
+ <property name="module.test.depends" value=""/>
+ <property name="module.test.excludes" value=""/>
<map property="module.depends.path" value="${module.depends}" join="${path.separator}">
<globmapper from="*" to="${build}/*/classes"/>
@@ -172,10 +175,10 @@
<property name="java.naming.factory.initial" value="org.apache.qpid.jndi.PropertiesFileInitialContextFactory"/>
<condition property="config" value="${profile}.testprofile" else="default.testprofile">
- <and>
- <isset property="profile"/>
- <available file="${project.root}/${profile}.testprofile" type="file"/>
- </and>
+ <and>
+ <isset property="profile"/>
+ <available file="${project.root}/${profile}.testprofile" type="file"/>
+ </and>
</condition>
<property file="${project.root}/${config}"/>
@@ -208,8 +211,7 @@
<classpath refid="module.test.path"/>
<batchtest fork="${test.fork}" todir="${build.results}">
- <fileset dir="${module.test.src}">
- <include name="**/${test1}.java"/>
+ <fileset dir="${module.test.src}" excludes="${module.test.excludes}">
<include name="**/${test}.java"/>
</fileset>
</batchtest>