[jboss-cvs] JBossAS SVN: r59526 - branches/Branch_AOP_1_5/aop.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Thu Jan 11 08:56:01 EST 2007


Author: kabir.khan at jboss.com
Date: 2007-01-11 08:55:59 -0500 (Thu, 11 Jan 2007)
New Revision: 59526

Modified:
   branches/Branch_AOP_1_5/aop/build.xml
Log:
Get precompiled tests working on linux

Modified: branches/Branch_AOP_1_5/aop/build.xml
===================================================================
--- branches/Branch_AOP_1_5/aop/build.xml	2007-01-11 13:31:06 UTC (rev 59525)
+++ branches/Branch_AOP_1_5/aop/build.xml	2007-01-11 13:55:59 UTC (rev 59526)
@@ -1054,20 +1054,20 @@
       </aopc>
 
       <!-- Get -Djboss.aop.path from passed in parameters -->
-      <condition property="jboss.aop.path" value="-Djboss.aop.path=${aop.xml}">
+      <condition property="jboss.aop.path" value="${aop.xml}">
          <isset property="aop.xml"/>
       </condition>
       <condition property="jboss.aop.path" value="">
          <isset property="no.xml"/>
       </condition>
-      <condition property="jboss.aop.path" value="-Djboss.aop.path=${source.res}/test/${test}/jboss-aop.xml">
+      <condition property="jboss.aop.path" value="${source.res}/test/${test}/jboss-aop.xml">
          <not>
             <isset property="aop.xml"/>
          </not>
       </condition>
 
       <!-- Get -Djboss.aop.class.path from passed in parameters -->
-      <condition property="jboss.aop.class.path" value="-Djboss.aop.class.path=${build.tests.classes}">
+      <condition property="jboss.aop.class.path" value="${build.tests.classes}">
          <isset property="use.annotations"/>
       </condition>
       <condition property="jboss.aop.class.path" value="">
@@ -1080,7 +1080,8 @@
       <mkdir dir="${build.reports}"/>
 
       <junit printsummary="yes" fork="no" haltonfailure="no">
-         <jvmarg value="${jboss.aop.path}"/>
+         <sysproperty key="jboss.aop.path" value="${jboss.aop.path}"/>
+         <sysproperty key="jboss.aop.class.path" value="${jboss.aop.class.path}"/>
          <jvmarg value="${jboss.aop.class.path}"/>
          <formatter type="plain" extension="-${caller}.txt"/>
          <formatter type="xml" extension="-${caller}.xml"/>




More information about the jboss-cvs-commits mailing list