Browse Source

made filtertrace overridable

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270647 13f79535-47bb-0310-9956-ffa450edef68
master
Erik Hatcher 23 years ago
parent
commit
160baad484
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      build.xml

+ 3
- 2
build.xml View File

@@ -20,6 +20,7 @@
<property name="deprecation" value="false" /> <property name="deprecation" value="false" />
<property name="optimize" value="true" /> <property name="optimize" value="true" />
<property name="junit.fork" value="false" /> <property name="junit.fork" value="false" />
<property name="junit.filtertrace" value="off"/>


<!-- <!--
=================================================================== ===================================================================
@@ -846,7 +847,7 @@




<junit printsummary="no" haltonfailure="yes" <junit printsummary="no" haltonfailure="yes"
filtertrace="off"
filtertrace="${junit.filtertrace}"
fork="${junit.fork}"> fork="${junit.fork}">
<!-- <jvmarg value="-classic"/> --> <!-- <jvmarg value="-classic"/> -->
<classpath refid="tests-classpath"/> <classpath refid="tests-classpath"/>
@@ -922,7 +923,7 @@
<target name="run-single-test" if="testcase" depends="compile-tests"> <target name="run-single-test" if="testcase" depends="compile-tests">


<junit printsummary="no" haltonfailure="yes" fork="${junit.fork}" <junit printsummary="no" haltonfailure="yes" fork="${junit.fork}"
filtertrace="off">
filtertrace="${junit.filtertrace}">
<!-- <jvmarg value="-classic"/> --> <!-- <jvmarg value="-classic"/> -->
<sysproperty key="build.tests" value="${build.tests}"/> <sysproperty key="build.tests" value="${build.tests}"/>
<classpath location="${java.home}/lib/classes.zip" /> <classpath location="${java.home}/lib/classes.zip" />


Loading…
Cancel
Save