Browse Source

Make Gump run all tests

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@273815 13f79535-47bb-0310-9956-ffa450edef68
master
Stefan Bodewig 22 years ago
parent
commit
168fb3b7a0
1 changed files with 9 additions and 4 deletions
  1. +9
    -4
      build.xml

+ 9
- 4
build.xml View File

@@ -1466,7 +1466,8 @@


<junit printsummary="${junit.summary}" haltonfailure="${test.haltonfailure}" <junit printsummary="${junit.summary}" haltonfailure="${test.haltonfailure}"
filtertrace="${junit.filtertrace}" filtertrace="${junit.filtertrace}"
fork="${junit.fork}">
fork="${junit.fork}"
failureproperty="tests.failed">
<!-- <jvmarg value="-classic"/> --> <!-- <jvmarg value="-classic"/> -->
<classpath refid="tests-classpath"/> <classpath refid="tests-classpath"/>
<classpath refid="classes.zip"/> <classpath refid="classes.zip"/>
@@ -1554,6 +1555,10 @@
<exclude name="${optional.package}/XmlValidateCatalogTest.java" <exclude name="${optional.package}/XmlValidateCatalogTest.java"
unless="apache.resolver.present"/> unless="apache.resolver.present"/>


<!-- needs jasperc -->
<exclude name="${optional.package}/JspcTest.java"
unless="jasper.present"/>

<!-- <!--
XXX need to figure out what's causing this InvocationTargetException XXX need to figure out what's causing this InvocationTargetException
--> -->
@@ -1563,7 +1568,6 @@
<exclude name="${util.package}/DateUtilsTest.java" <exclude name="${util.package}/DateUtilsTest.java"
unless="jdk1.2+"/> unless="jdk1.2+"/>


<exclude name="${optional.package}/JspcTest.java"/>
<!-- misc oneoff tests --> <!-- misc oneoff tests -->
<exclude name="${optional.package}/WsdlToDotnetTest.java" <exclude name="${optional.package}/WsdlToDotnetTest.java"
unless="dotnetapps.found"/> unless="dotnetapps.found"/>
@@ -1586,11 +1590,12 @@
<exclude name="${ant.package}/taskdefs/AbstractCvsTaskTest.java" <exclude name="${ant.package}/taskdefs/AbstractCvsTaskTest.java"
unless="have.cvs"/> unless="have.cvs"/>


<!-- push to the end as long as it is failing -->
<exclude name="${ant.package}/taskdefs/ImportTest.java"/>
</fileset> </fileset>
</batchtest> </batchtest>
<test name="org.apache.tools.ant.taskdefs.optional.JspcTest"
if="jasper.present"/>
</junit> </junit>
<fail if="tests.failed">At least one test has failed.</fail>
</target> </target>


<target name="run-single-test" if="testcase" depends="compile-tests,run-single-test-only" <target name="run-single-test" if="testcase" depends="compile-tests,run-single-test-only"


Loading…
Cancel
Save