You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by gs...@apache.org on 2006/12/22 20:41:30 UTC

svn commit: r489738 - /harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml

Author: gshimansky
Date: Fri Dec 22 11:41:29 2006
New Revision: 489738

URL: http://svn.apache.org/viewvc?view=rev&rev=489738
Log:
Fixed tests execution after HARMONY-2694. Kernel tests failed after execution
of smoke tests in "build test" mode. The variable report.dir collides with
kernel tests name.


Modified:
    harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml

Modified: harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml?view=diff&rev=489738&r1=489737&r2=489738
==============================================================================
--- harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml (original)
+++ harmony/enhanced/drlvm/trunk/build/make/targets/smoke.test.xml Fri Dec 22 11:41:29 2006
@@ -121,18 +121,18 @@
     </target>
 
     <target name="build_report">
-        <property name="report.dir" location="${build.dir}/_smoke.tests/reports/html"/>
-        <delete dir="${report.dir}" />
-        <mkdir dir="${report.dir}" />
-        <junitreport todir="${report.dir}">
+        <property name="smoke.tests.report.dir" location="${build.dir}/_smoke.tests/reports/html"/>
+        <delete dir="${smoke.tests.report.dir}" />
+        <mkdir dir="${smoke.tests.report.dir}" />
+        <junitreport todir="${smoke.tests.report.dir}">
             <fileset dir="${build.dir}/_smoke.tests/reports">
                 <include name="*.xml"/>
             </fileset>
-            <report format="frames" todir="${report.dir}"/>
+            <report format="frames" todir="${smoke.tests.report.dir}"/>
         </junitreport>
 
         <!-- use this property just to get the slashes to display right in the echo -->
-        <property name="display-location" location="${report.dir}/index.html"/>
+        <property name="display-location" location="${smoke.tests.report.dir}/index.html"/>
         <echo message="The test report is in ${display-location}"/>
     </target>