[jboss-cvs] JBossAS SVN: r95139 - trunk/testsuite.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Oct 19 15:46:12 EDT 2009


Author: bstansberry at jboss.com
Date: 2009-10-19 15:46:12 -0400 (Mon, 19 Oct 2009)
New Revision: 95139

Modified:
   trunk/testsuite/build.xml
Log:
[JBAS-7247] Create separate Hudson job for classloader leak tests

Modified: trunk/testsuite/build.xml
===================================================================
--- trunk/testsuite/build.xml	2009-10-19 19:22:14 UTC (rev 95138)
+++ trunk/testsuite/build.xml	2009-10-19 19:46:12 UTC (rev 95139)
@@ -1236,10 +1236,8 @@
       <antcall target="tests-clustered-profileservice" inheritRefs="true"/>
       <antcall target="tests-web-profile" inheritRefs="true"/>
    	
-      <!-- NOTE: Run the classloader leak tests last as they can be
-                 disruptive to the overall run if there are failures. -->
-      <antcall target="tests-classloader-leak" inheritRefs="true"/>
-      <antcall target="tests-clustered-classloader-leak" inheritRefs="true"/>
+      <!-- JBAS-7247 classloader leak tests have been moved out of this
+           target; see target tests-all-classloader-leak -->
    	
       <antcall target="tests-report" inheritRefs="true"/>
       <!-- JBAS-5918 https://issues.apache.org/bugzilla/show_bug.cgi?id=41368 
@@ -3169,8 +3167,16 @@
    </target>
   
    <!-- ========================================= END JBM Targets ============================= -->
+   
+	<!-- Convenience target to run both single-node and clustered classloader 
+	     leak tests. See JBAS-7247. -->
+   <target name="tests-all-classloader-leak" depends="init">
+     <antcall target="tests-classloader-leak" inheritRefs="true"/>
+     <antcall target="tests-clustered-classloader-leak" inheritRefs="true"/>
+   </target>
 
-  <target name="tests-classloader-leak" depends="init">
+	<!-- Single-node classloader leak tests -->
+	<target name="tests-classloader-leak" depends="init">
 
     <mkdir dir="${build.reports}"/>
     <mkdir dir="${build.testlog}"/>




More information about the jboss-cvs-commits mailing list