Browse Source

test needs beanshell in addition to BSF

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@1515082 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 11 years ago
parent
commit
4a8f2b2678
1 changed files with 6 additions and 1 deletions
  1. +6
    -1
      src/tests/antunit/taskdefs/propertyhelper-test.xml

+ 6
- 1
src/tests/antunit/taskdefs/propertyhelper-test.xml View File

@@ -19,7 +19,12 @@
<!-- each test verifies that the PropertyEvaluator delegate works -->
<import file="../antunit-base.xml" />

<available property="prereqs-ok" classname="org.apache.bsf.BSFManager"/>
<condition property="prereqs-ok">
<and>
<available classname="org.apache.bsf.BSFManager"/>
<available classname="bsh.util.BeanShellBSFEngine"/>
</and>
</condition>

<target name="setUp" unless="setup.complete" if="prereqs-ok">
<script language="beanshell" manager="bsf">


Loading…
Cancel
Save