You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by te...@apache.org on 2006/03/07 23:00:56 UTC

svn commit: r384027 - /incubator/harmony/enhanced/classlib/trunk/make/build-test.xml

Author: tellison
Date: Tue Mar  7 14:00:55 2006
New Revision: 384027

URL: http://svn.apache.org/viewcvs?rev=384027&view=rev
Log:
Reflect new location of test report data

Modified:
    incubator/harmony/enhanced/classlib/trunk/make/build-test.xml

Modified: incubator/harmony/enhanced/classlib/trunk/make/build-test.xml
URL: http://svn.apache.org/viewcvs/incubator/harmony/enhanced/classlib/trunk/make/build-test.xml?rev=384027&r1=384026&r2=384027&view=diff
==============================================================================
--- incubator/harmony/enhanced/classlib/trunk/make/build-test.xml (original)
+++ incubator/harmony/enhanced/classlib/trunk/make/build-test.xml Tue Mar  7 14:00:55 2006
@@ -23,14 +23,14 @@
 
     <property name="build.compiler" value="modern"/>
 
-    <property name="tests.output" value="../../target/test_report" />
-    <property name="target.output" value="../../deploy" />
+    <property name="tests.output" value="build/test_report" />
+    <property name="target.output" value="deploy" />
 
     <target name="test-all" depends="clean, test-luni, test-xnet, test-text, test-security, gen-report">
 	</target>
 
 	<target name="clean">
-		<delete dir="target" />
+		<delete dir="${tests.output}" />
 	</target>
 
 	<target name="test-luni">
@@ -69,11 +69,11 @@
 	</target>
 
 	<target name="gen-report">
-		<junitreport todir="target/test_report">
-		  <fileset dir="target/test_report">
+		<junitreport todir="${tests.output}">
+		  <fileset dir="${tests.output}">
 		    <include name="TEST*-*.xml"/>
 		  </fileset>
-		  <report format="frames" todir="target/test_report/html"/>
+		  <report format="frames" todir="${tests.output}/html"/>
 		</junitreport>
     </target>