summaryrefslogtreecommitdiff
path: root/qpid/java/module.xml
diff options
context:
space:
mode:
authorArnaud Simon <arnaudsimon@apache.org>2008-05-08 12:24:43 +0000
committerArnaud Simon <arnaudsimon@apache.org>2008-05-08 12:24:43 +0000
commit7fd323b5860d7adae5d4972bab9a9ea51bf3502d (patch)
treeb8498847d52c630aa8a24fb7ef7e01055308586f /qpid/java/module.xml
parent87e3786b1274db0e8256153f4efd215ad87e3e9a (diff)
downloadqpid-python-7fd323b5860d7adae5d4972bab9a9ea51bf3502d.tar.gz
QPID-1037: Added module name prop and an exclude.modules prop + switch systests off in cpp profiles.
git-svn-id: https://svn.apache.org/repos/asf/incubator/qpid/trunk@654505 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/module.xml')
-rw-r--r--qpid/java/module.xml7
1 files changed, 6 insertions, 1 deletions
diff --git a/qpid/java/module.xml b/qpid/java/module.xml
index de6007b6d2..2b5a798d58 100644
--- a/qpid/java/module.xml
+++ b/qpid/java/module.xml
@@ -185,10 +185,15 @@
</and>
</condition>
+
<property file="${project.root}/${config}"/>
+ <condition property="dontruntest" value="dontruntest" else="runtest">
+ <contains substring="${module.name}" string="${exclude.modules}" />
+ </condition>
+
<target name="test" depends="build,compile-tests" if="module.test.src.exists"
- description="execute unit tests">
+ unless="${dontruntest}" description="execute unit tests">
<junit fork="${test.fork}" maxmemory="${test.mem}" reloading="no"
haltonfailure="${haltonfailure}" haltonerror="${haltonerror}"