[Jboss-cvs] JBossAS SVN: r56883 - trunk/aop

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Sep 15 08:02:56 EDT 2006


Author: kabir.khan at jboss.com
Date: 2006-09-15 08:02:54 -0400 (Fri, 15 Sep 2006)
New Revision: 56883

Modified:
   trunk/aop/build.xml
Log:
Set <junit fork="true" on tests called via antcall to see if this fixes the problems on linux

Modified: trunk/aop/build.xml
===================================================================
--- trunk/aop/build.xml	2006-09-15 10:17:51 UTC (rev 56882)
+++ trunk/aop/build.xml	2006-09-15 12:02:54 UTC (rev 56883)
@@ -844,7 +844,7 @@
       <echo>Running ${test} with instrumentor ${instrumentor}</echo>
 
       <mkdir dir="${build.reports}"/>
-      <junit printsummary="yes" fork="no" haltonfailure="no">
+      <junit printsummary="yes" fork="yes" haltonfailure="no">
          <jvmarg value="-Xbootclasspath/p:${bootclasspath}"/>
          <jvmarg value="${jboss.aop.class.path}"/>
          <jvmarg value="${jboss.aop.path}"/>
@@ -1125,6 +1125,7 @@
          <classpath path="${build.tests.classes}"/>
          <aoppath path="${aoppath}"/>
          <sysproperty key="jboss.aop.instrumentor" value="${instrumentor}"/>
+      	<sysproperty key="jboss.aop.debug.classes" value="true"/>
          <src path="${build.tests.classes}"/>
          <include name="org/jboss/test/aop/${test}/**"/>
          <exclude name="${exclude}"/>
@@ -1157,7 +1158,7 @@
       <!-- determine output directory from weaving mode -->
       <mkdir dir="${build.reports}"/>
 
-      <junit printsummary="yes" fork="no" haltonfailure="no">
+      <junit printsummary="yes" fork="yes" haltonfailure="no">
          <jvmarg value="${jboss.aop.path}"/>
          <jvmarg value="${jboss.aop.class.path}"/>
          <formatter type="plain" extension="-${caller}.txt"/>
@@ -1200,7 +1201,7 @@
          <include name="org/jboss/test/aop/annotationc/*.java"/>
       </annotationc>
 
-      <junit printsummary="yes" fork="no" haltonfailure="no" >
+      <junit printsummary="yes" fork="yes" haltonfailure="no" >
          <classpath>
             <path refid="test.classpath"/>
             <pathelement location="${build.tests.classes}"/>




More information about the jboss-cvs-commits mailing list