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 2007/01/24 14:33:25 UTC

svn commit: r499399 - /harmony/enhanced/classlib/trunk/modules/portlib/build.xml

Author: hindessm
Date: Wed Jan 24 05:33:24 2007
New Revision: 499399

URL: http://svn.apache.org/viewvc?view=rev&rev=499399
Log:
Fixing native test logic.

Modified:
    harmony/enhanced/classlib/trunk/modules/portlib/build.xml

Modified: harmony/enhanced/classlib/trunk/modules/portlib/build.xml
URL: http://svn.apache.org/viewvc/harmony/enhanced/classlib/trunk/modules/portlib/build.xml?view=diff&rev=499399&r1=499398&r2=499399
==============================================================================
--- harmony/enhanced/classlib/trunk/modules/portlib/build.xml (original)
+++ harmony/enhanced/classlib/trunk/modules/portlib/build.xml Wed Jan 24 05:33:24 2007
@@ -47,7 +47,7 @@
         </fail>
     </target>
 
-    <target name="-test-module" unless="test.portlib"
+    <target name="-test-module"
             depends="-compile-native-tests,-run-native-tests" />
 
     <target name="copy-native-includes">
@@ -136,14 +136,14 @@
         </delete>
     </target>
 
-    <target name="-compile-native-tests" >
+    <target name="-compile-native-tests" if="test.portlib" >
         <make dir="${hy.portlib.src.test.native}/init/${hy.os.family}" />
         <make dir="${hy.portlib.src.test.native}/hyerror/${hy.os.family}" />
         <make dir="${hy.portlib.src.test.native}/hytime/${hy.os.family}" />
         <make dir="${hy.portlib.src.test.native}/hyfile/${hy.os.family}" />
     </target>
 
-    <target name="-run-native-tests" >
+    <target name="-run-native-tests" if="test.portlib" >
         <mkdir dir="${hy.tests.reports}" />
         <property environment="env"/>
         <exec-native test="init" />