summaryrefslogtreecommitdiff
path: root/qpid/java/perftests
diff options
context:
space:
mode:
authorRobert Gemmell <robbie@apache.org>2012-05-20 21:59:30 +0000
committerRobert Gemmell <robbie@apache.org>2012-05-20 21:59:30 +0000
commitd259267a3a43fe7cb512aed8fd747cc9d4135954 (patch)
tree3c8bee49c665ff6527da3132ecd576f0c5cb086c /qpid/java/perftests
parent6d7405089db8359d001b3f9133e819f8d40c0a8a (diff)
downloadqpid-python-d259267a3a43fe7cb512aed8fd747cc9d4135954.tar.gz
QPID-3994: fix -Doptional=true enabling of the optional bdbstore dependency in the systests/perftests
git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@1340855 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java/perftests')
-rw-r--r--qpid/java/perftests/build.xml6
1 files changed, 6 insertions, 0 deletions
diff --git a/qpid/java/perftests/build.xml b/qpid/java/perftests/build.xml
index 0508219a49..63a6ea4983 100644
--- a/qpid/java/perftests/build.xml
+++ b/qpid/java/perftests/build.xml
@@ -20,10 +20,16 @@
-->
<project name="Performance Tests" default="build">
<condition property="perftests.optional.test.depends" value="bdbstore" else="">
+ <or>
<and>
<contains string="${modules.opt}" substring="bdbstore"/>
<contains string="${profile}" substring="bdb"/>
</and>
+ <and>
+ <istrue value="${optional}"/>
+ <contains string="${profile}" substring="bdb"/>
+ </and>
+ </or>
</condition>
<property name="module.depends" value="client common"/>