You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jspwiki.apache.org by aj...@apache.org on 2009/05/03 18:01:47 UTC

svn commit: r771070 - /incubator/jspwiki/trunk/build.xml

Author: ajaquith
Date: Sun May  3 16:01:46 2009
New Revision: 771070

URL: http://svn.apache.org/viewvc?rev=771070&view=rev
Log:
Relocated unit test results from to build/tests. This keeps the tests dir nice and clean.

Modified:
    incubator/jspwiki/trunk/build.xml

Modified: incubator/jspwiki/trunk/build.xml
URL: http://svn.apache.org/viewvc/incubator/jspwiki/trunk/build.xml?rev=771070&r1=771069&r2=771070&view=diff
==============================================================================
--- incubator/jspwiki/trunk/build.xml (original)
+++ incubator/jspwiki/trunk/build.xml Sun May  3 16:01:46 2009
@@ -729,12 +729,12 @@
         </batchtest>
      </junit>
 
-  	 <junitreport todir="${tests}">
+  	 <junitreport todir="${build}/tests">
   	    <fileset dir="${tests.reports}">
   	       <include name="**/TEST-*.xml" />
            <exclude name="**/TEST-stress.*.xml" if="tests.stress.disabled"/>
   	    </fileset>
-  	    <report format="noframes" todir="${tests}" />
+  	    <report format="noframes" todir="${build}/tests" />
   	 </junitreport>
 
   </target>
@@ -758,11 +758,11 @@
         </batchtest>
      </junit>
 
-     <junitreport todir="${tests}">
+     <junitreport todir="${build}/tests">
         <fileset dir="${tests.reports}">
            <include name="**/TEST-*.xml" />
         </fileset>
-        <report format="noframes" todir="${tests}" />
+        <report format="noframes" todir="${build}/tests" />
      </junitreport>
 
   </target>