You are viewing a plain text version of this content. The canonical link for it is here.
Posted to svn@forrest.apache.org by cr...@apache.org on 2004/07/19 15:50:37 UTC

svn commit: rev 23062 - forrest/trunk

Author: crossley
Date: Mon Jul 19 06:50:36 2004
New Revision: 23062

Modified:
   forrest/trunk/build.xml
Log:
Fix the "test" build target.
Issue: FOR-171


Modified: forrest/trunk/build.xml
==============================================================================
--- forrest/trunk/build.xml	(original)
+++ forrest/trunk/build.xml	Mon Jul 19 06:50:36 2004
@@ -251,22 +251,18 @@
           description="Test that the features are okay before committing."/>
 
   <target name="testseed" depends="init">
-    <property name="forrest.home" value="${dist-shbat.dir}" />  
+    <property name="forrest.home" location="src/core" />  
     <property name="test.dir" value="${build.dir}/test"/>
     <delete dir="${test.dir}"/>
     <mkdir dir="${test.dir}"/>
     <ant antfile="${forrest.home}/forrest.build.xml" target="seed">
-      <property name="forrest.home" value="${dist-shbat.dir}" />  
+      <property name="forrest.home" value="${forrest.home}"/>  
       <property name="project.home" value="${test.dir}"/>
     </ant>
-    
-    <ant antfile="${test.dir}/forrest-targets.xml" target="site"/>
-    
-    <!--    
     <ant antfile="${forrest.home}/forrest.build.xml" target="site">
-      <property name="forrest.home" value="${dist-shbat.dir}" />  
+      <property name="forrest.home" value="${forrest.home}"/>  
       <property name="project.home" value="${test.dir}"/>
-    </ant>-->
+    </ant>
   </target>
   
   <!-- ================================== -->