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 2010/06/26 12:24:58 UTC

svn commit: r958210 - in /harmony/enhanced/java/branches/mrh/classlib: make/ modules/accessibility/make/ modules/annotation/make/ modules/applet/make/ modules/archive/make/ modules/auth/make/ modules/awt/make/ modules/beans/make/ modules/concurrent/mak...

Author: hindessm
Date: Sat Jun 26 10:24:57 2010
New Revision: 958210

URL: http://svn.apache.org/viewvc?rev=958210&view=rev
Log:
Fix test target.

Modified:
    harmony/enhanced/java/branches/mrh/classlib/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/accessibility/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/annotation/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/applet/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/archive/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/auth/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/awt/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/beans/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/concurrent/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/crypto/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/imageio/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/instrument/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/jndi/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/lang-management/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/logging/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/luni/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/math/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/misc/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/nio/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/nio_char/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/pack200/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/prefs/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/print/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/regex/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/rmi/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/security/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/sound/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/sql/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/suncompat/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/swing/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/text/make/run-test.xml
    harmony/enhanced/java/branches/mrh/classlib/modules/x-net/make/run-test.xml

Modified: harmony/enhanced/java/branches/mrh/classlib/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,11 +23,13 @@
     <property file="test.properties" />
 
     <!-- These two parameters could be assigned by user -->
-    <property name="target.dir" value="." />
-    <property name="work.dir" value="${target.dir}" />
+    <property name="hy.target" value="." />
+    <property name="hy.component" value="test" />
+    <property name="hy.module" value="toplevel" />
+    <property name="work.dir" value="${hy.target}" />
     <property name="tests.output" value="${work.dir}/report" />
     <property name="report.dir" value="${tests.output}/html" />
-    <property name="junit.jar" value="${target.dir}/junit.jar" />
+    <property name="junit.jar" value="${hy.target}/junit.jar" />
 
     <property name="gen.report" value="true" />
     <condition property="do.full.report" value="true">
@@ -54,7 +56,7 @@
 
     <target name="-test">
         <echo message="Test Work Dir: ${work.dir}" />
-        <echo message="Test Target Dir: ${target.dir}" />
+        <echo message="Test Target Dir: ${hy.target}" />
         <mkdir dir="${work.dir}" /> 
         <delete dir="${tests.output}" quiet="true"/>
         <poll-modules dir="." target="test-module" />

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/accessibility/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/accessibility/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/accessibility/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/accessibility/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="accessibility" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/annotation/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/annotation/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/annotation/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/annotation/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="annotation" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/applet/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/applet/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/applet/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/applet/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="applet" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/archive/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/archive/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/archive/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/archive/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="archive" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/auth/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/auth/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/auth/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/auth/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="auth" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/awt/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/awt/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/awt/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/awt/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="awt" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/beans/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/beans/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/beans/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/beans/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="beans" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/concurrent/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/concurrent/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/concurrent/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/concurrent/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="concurrent" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/crypto/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/crypto/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/crypto/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/crypto/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="crypto" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/imageio/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/imageio/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/imageio/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/imageio/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="imageio" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/instrument/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/instrument/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/instrument/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/instrument/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="instrument" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/jndi/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/jndi/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/jndi/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/jndi/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="jndi" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/lang-management/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/lang-management/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/lang-management/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/lang-management/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="lang-management" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/logging/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/logging/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/logging/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/logging/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="logging" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/luni/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/luni/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/luni/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/luni/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="luni" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/math/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/math/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/math/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/math/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="math" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/misc/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/misc/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/misc/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/misc/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="misc" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/nio/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/nio/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/nio/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/nio/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="nio" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/nio_char/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/nio_char/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/nio_char/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/nio_char/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="nio_char" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/pack200/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/pack200/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/pack200/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/pack200/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="pack200" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/prefs/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/prefs/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/prefs/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/prefs/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="prefs" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/print/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/print/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/print/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/print/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="print" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/regex/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/regex/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/regex/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/regex/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="regex" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/rmi/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/rmi/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/rmi/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/rmi/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="rmi" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/security/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/security/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/security/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/security/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="security" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/sound/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/sound/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/sound/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/sound/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="sound" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/sql/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/sql/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/sql/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/sql/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="sql" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/suncompat/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/suncompat/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/suncompat/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/suncompat/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="suncompat" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/swing/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/swing/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/swing/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/swing/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="swing" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/text/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/text/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/text/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/text/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="text" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />
 

Modified: harmony/enhanced/java/branches/mrh/classlib/modules/x-net/make/run-test.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/java/branches/mrh/classlib/modules/x-net/make/run-test.xml?rev=958210&r1=958209&r2=958210&view=diff
==============================================================================
--- harmony/enhanced/java/branches/mrh/classlib/modules/x-net/make/run-test.xml (original)
+++ harmony/enhanced/java/branches/mrh/classlib/modules/x-net/make/run-test.xml Sat Jun 26 10:24:57 2010
@@ -23,7 +23,9 @@
     <property file="../test.properties" />
 
     <property name="work.dir" value=".." />
-    <property name="target.dir" value=".." />
+    <property name="hy.target" value=".." />
+    <property name="hy.component" value="classlib" />
+    <property name="hy.module" value="x-net" />
     <property name="tests.output" location="../report" />
     <property name="junit.jar" location="../junit.jar" />