Author: cutting
Date: Tue Oct  6 21:32:01 2009
New Revision: 822518

URL: http://svn.apache.org/viewvc?rev=822518&view=rev
Log:
AVRO-131.  Permit specification of JUnit test output format.  Contributed by 
Giridharan Kesavan.

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=822518&r1=822517&r2=822518&view=diff
==============================================================================
--- hadoop/avro/trunk/CHANGES.txt (original)
+++ hadoop/avro/trunk/CHANGES.txt Tue Oct  6 21:32:01 2009
@@ -55,6 +55,9 @@
     AVRO-133.  Update version number in specification document and
     documentation tab automatically from build version. (cutting)
 
+    AVRO-131.  Permit specification of JUnit test output format.
+    (Giridharan Kesavan via cutting)
+
   OPTIMIZATIONS
 
   BUG FIXES

Modified: hadoop/avro/trunk/build.xml
URL: 
http://svn.apache.org/viewvc/hadoop/avro/trunk/build.xml?rev=822518&r1=822517&r2=822518&view=diff
==============================================================================
--- hadoop/avro/trunk/build.xml (original)
+++ hadoop/avro/trunk/build.xml Tue Oct  6 21:32:01 2009
@@ -53,6 +53,7 @@
             value="${nonspace.os}-${os.arch}-${sun.arch.data.model}"/>
 
   <property name="test.count" value="100"/>
+  <property name="test.junit.output.format" value="plain"/>
   <property name="test.java.src.dir" value="${basedir}/src/test/java"/>
   <property name="test.schemata.dir" value="${basedir}/src/test/schemata"/>
   <property name="test.java.build.dir" value="${build.dir}/test"/>
@@ -273,7 +274,7 @@
         <sysproperty key="test.dir" value="${test.java.build.dir}"/>
         <sysproperty key="test.validate" value="${test.validate}"/>
         <classpath refid="test.java.classpath"/>
-        <formatter type="plain" />
+        <formatter type="${test.junit.output.format}"/>
         <batchtest todir="${test.java.build.dir}" unless="testcase">
           <fileset dir="@{files.location}"
                   includes="@{tests.pattern}"


Reply via email to