svn commit: r904985 - in /ofbiz/trunk: common.xml framework/base/build.xml

Previous Topic Next Topic
 
classic Classic list List threaded Threaded
1 message Options
Reply | Threaded
Open this post in threaded view
|

svn commit: r904985 - in /ofbiz/trunk: common.xml framework/base/build.xml

doogie-3
Author: doogie
Date: Sun Jan 31 06:26:57 2010
New Revision: 904985

URL: http://svn.apache.org/viewvc?rev=904985&view=rev
Log:
Delete cobertura.dat for each run, so that different runs don't overlap
each others line numbers.

Modified:
    ofbiz/trunk/common.xml
    ofbiz/trunk/framework/base/build.xml

Modified: ofbiz/trunk/common.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/common.xml?rev=904985&r1=904984&r2=904985&view=diff
==============================================================================
--- ofbiz/trunk/common.xml (original)
+++ ofbiz/trunk/common.xml Sun Jan 31 06:26:57 2010
@@ -136,6 +136,7 @@
                 </fileset>
             </classpath>
         </taskdef>
+        <delete file="${build.dir}/test-results/cobertura.dat"/>
         <cobertura-instrument datafile="${build.dir}/test-results/cobertura.dat" todir="${build.dir}/cobertura-lib">
             <fileset dir="${build.dir}/lib">
                 <include name="*.jar"/>

Modified: ofbiz/trunk/framework/base/build.xml
URL: http://svn.apache.org/viewvc/ofbiz/trunk/framework/base/build.xml?rev=904985&r1=904984&r2=904985&view=diff
==============================================================================
--- ofbiz/trunk/framework/base/build.xml (original)
+++ ofbiz/trunk/framework/base/build.xml Sun Jan 31 06:26:57 2010
@@ -40,6 +40,8 @@
     <filelist id="test.classes" dir="${src.dir}">
         <file name="org/ofbiz/base/test/BaseUnitTests.java"/>
         <file name="org/ofbiz/base/util/collections/test/GenericMapTest.java"/>
+ <file name="org/ofbiz/base/concurrent/test/SyncTTLObjectTest.java"/>
+ <file name="org/ofbiz/base/concurrent/test/AsyncTTLObjectTest.java"/>
     </filelist>
 
     <target name="init">