You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@harmony.apache.org by hi...@apache.org on 2009/07/14 22:18:31 UTC

svn commit: r794055 - in /harmony/enhanced/classlib/trunk: make/run-test.xml modules/accessibility/make/run-test.xml modules/luni/make/run-test.xml modules/security/make/run-test.xml

Author: hindessm
Date: Tue Jul 14 20:18:31 2009
New Revision: 794055

URL: http://svn.apache.org/viewvc?rev=794055&view=rev
Log:
Define test.jre.home in terms of hy.hdk so when called from the classlib
build things are set correctly.

Modified:
    harmony/enhanced/classlib/trunk/make/run-test.xml
    harmony/enhanced/classlib/trunk/modules/accessibility/make/run-test.xml
    harmony/enhanced/classlib/trunk/modules/luni/make/run-test.xml
    harmony/enhanced/classlib/trunk/modules/security/make/run-test.xml

Modified: harmony/enhanced/classlib/trunk/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/make/run-test.xml?rev=794055&r1=794054&r2=794055&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/make/run-test.xml (original)
+++ harmony/enhanced/classlib/trunk/make/run-test.xml Tue Jul 14 20:18:31 2009
@@ -18,7 +18,8 @@
 
 <project name="Harmony Test" default="test" basedir=".">
 
-    <property name="test.jre.home" location="../../jdk/jre" />
+    <property name="hy.hdk" location="../.." />
+    <property name="test.jre.home" location="${hy.hdk}/jdk/jre" />
     <property file="test.properties" />
     <property name="build.module" value="all"/>
     <import file="../ant/properties.xml" />

Modified: harmony/enhanced/classlib/trunk/modules/accessibility/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/accessibility/make/run-test.xml?rev=794055&r1=794054&r2=794055&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/accessibility/make/run-test.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/accessibility/make/run-test.xml Tue Jul 14 20:18:31 2009
@@ -18,7 +18,8 @@
 
 <project name="Harmony Accessibility Test" default="test" basedir=".">
 
-    <property name="test.jre.home" location="../../../jdk/jre" />
+    <property name="hy.hdk" location="../../.." />
+    <property name="test.jre.home" location="${hy.hdk}/jdk/jre" />
     <property file="../test.properties" />
     <import file="../../ant/properties.xml" />
 

Modified: harmony/enhanced/classlib/trunk/modules/luni/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/luni/make/run-test.xml?rev=794055&r1=794054&r2=794055&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/luni/make/run-test.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/luni/make/run-test.xml Tue Jul 14 20:18:31 2009
@@ -18,7 +18,8 @@
 
 <project name="Harmony LUNI Test" default="test" basedir=".">
 
-    <property name="test.jre.home" location="../../../jdk/jre" />
+    <property name="hy.hdk" location="../../.." />
+    <property name="test.jre.home" location="${hy.hdk}/jdk/jre" />
     <property file="../test.properties" />
     <import file="../../ant/properties.xml" />
 

Modified: harmony/enhanced/classlib/trunk/modules/security/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/security/make/run-test.xml?rev=794055&r1=794054&r2=794055&view=diff
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/security/make/run-test.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/security/make/run-test.xml Tue Jul 14 20:18:31 2009
@@ -18,7 +18,8 @@
 
 <project name="Harmony Security Test" default="test" basedir=".">
 
-    <property name="test.jre.home" location="../../../jdk/jre" />
+    <property name="hy.hdk" location="../../.." />
+    <property name="test.jre.home" location="${hy.hdk}/jdk/jre" />
     <property file="../test.properties" />
     <import file="../../ant/properties.xml" />