Browse Source

Heard no objections; add includetests property to narrow the batchtest.

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@278053 13f79535-47bb-0310-9956-ffa450edef68
master
Matthew Jason Benson 20 years ago
parent
commit
27ec2ca9c6
1 changed files with 3 additions and 2 deletions
  1. +3
    -2
      build.xml

+ 3
- 2
build.xml View File

@@ -1487,6 +1487,8 @@
</or>
</condition>

<property name="includetests" value="**/*Test*" />

<junit printsummary="${junit.summary}" haltonfailure="${test.haltonfailure}"
filtertrace="${junit.filtertrace}"
fork="${junit.fork}" forkmode="${junit.forkmode}"
@@ -1506,8 +1508,7 @@
<formatter type="brief" usefile="false"/>

<batchtest>
<fileset dir="${tests.dir}">
<include name="**/*Test*"/>
<fileset dir="${tests.dir}" includes="${includetests}">

<!-- abstract classes, not testcases -->
<exclude name="${taskdefs.package}/TaskdefsTest.java"/>


Loading…
Cancel
Save