Author: cutting
Date: Wed Oct 7 19:39:32 2009
New Revision: 822873
URL: http://svn.apache.org/viewvc?rev=822873&view=rev
Log:
AVRO-138. Add a 'unit-test-java' Ant target that runs tests without running
checkstyle or javadoc. Contributed by Thiruvalluvan M. G.
Modified:
hadoop/avro/trunk/CHANGES.txt
hadoop/avro/trunk/build.xml
Modified: hadoop/avro/trunk/CHANGES.txt
URL:
http://svn.apache.org/viewvc/hadoop/avro/trunk/CHANGES.txt?rev=822873&r1=822872&r2=822873&view=diff
==============================================================================
--- hadoop/avro/trunk/CHANGES.txt (original)
+++ hadoop/avro/trunk/CHANGES.txt Wed Oct 7 19:39:32 2009
@@ -62,6 +62,10 @@
reserved metadata keys "codec" and "sync". The only codec
currently defined is "null". (Thiruvalluvan M. G. via cutting)
+ AVRO-138. Add a "unit-test-java" Ant target that runs tests
+ without running checkstyle or javadoc. (Thiruvalluvan M. G. via
+ cutting)
+
OPTIMIZATIONS
BUG FIXES
Modified: hadoop/avro/trunk/build.xml
URL:
http://svn.apache.org/viewvc/hadoop/avro/trunk/build.xml?rev=822873&r1=822872&r2=822873&view=diff
==============================================================================
--- hadoop/avro/trunk/build.xml (original)
+++ hadoop/avro/trunk/build.xml Wed Oct 7 19:39:32 2009
@@ -288,7 +288,10 @@
</sequential>
</macrodef>
- <target name="test-java" depends="compile-test-java,checkstyle-java,javadoc"
+ <target name="test-java" depends="unit-test-java,checkstyle-java,javadoc"
+ description="Run java tests" />
+
+ <target name="unit-test-java" depends="compile-test-java"
description="Run java unit tests">
<test-runner files.location="${test.java.src.dir}"
tests.pattern="**/${test.java.include}.java"/>
</target>