Skip to content

Commit

Permalink
NUTCH-449. Make junit output format configurable. Contributed by Nigel.
Browse files Browse the repository at this point in the history
git-svn-id: https://svn.apache.org/repos/asf/lucene/nutch/trunk@511159 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
cutting committed Feb 23, 2007
1 parent bb5cff3 commit c6b712b
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
2 changes: 2 additions & 0 deletions CHANGES.txt
Original file line number Diff line number Diff line change
Expand Up @@ -146,6 +146,8 @@ Unreleased changes (0.9-dev)

48. NUTCH-390 - Javadoc warnings (mattmann)

49. NUTCH-449 - Make junit output format configurable. (nigel via cutting)


Release 0.8 - 2006-07-25

Expand Down
3 changes: 2 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
<property file="${user.home}/build.properties" />
<property file="${basedir}/build.properties" />
<property file="${basedir}/default.properties" />
<property name="test.junit.output.format" value="plain"/>

<!-- the normal classpath -->
<path id="classpath">
Expand Down Expand Up @@ -281,7 +282,7 @@
<sysproperty key="test.build.data" value="${test.build.data}"/>
<sysproperty key="test.src.dir" value="${test.src.dir}"/>
<classpath refid="test.classpath"/>
<formatter type="plain" />
<formatter type="${test.junit.output.format}" />
<batchtest todir="${test.build.dir}" unless="testcase">
<fileset dir="${test.src.dir}"
includes="**/Test*.java" excludes="**/${test.exclude}.java" />
Expand Down

0 comments on commit c6b712b

Please sign in to comment.