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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Tue Mar 9 23:25:11 EST 2010


Author: bstansberry at jboss.com
Date: 2010-03-09 23:25:10 -0500 (Tue, 09 Mar 2010)
New Revision: 102184

Modified:
   trunk/testsuite/build.xml
Log:
Make it easier to manually run some test subsets against a started server

Modified: trunk/testsuite/build.xml
===================================================================
--- trunk/testsuite/build.xml	2010-03-10 04:21:21 UTC (rev 102183)
+++ trunk/testsuite/build.xml	2010-03-10 04:25:10 UTC (rev 102184)
@@ -1813,7 +1813,7 @@
       </junit>
    </target>
 
-   <target name="tests-standard-stress">
+   <target name="tests-standard-stress" depends="init">
       <mkdir dir="${build.reports}"/>
       <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
@@ -2617,7 +2617,7 @@
    <!--
       | IIOP test cases that should run successfully
     -->
-   <target name="tests-iiop">
+   <target name="tests-iiop" depends="init">
       <mkdir dir="${build.reports}"/>
       <mkdir dir="${build.testlog}"/>
       <junit dir="${module.output}"
@@ -2827,7 +2827,8 @@
    
    <!-- Run the Web Services JAX-WS Tests-->
    <target name="tests-ws"
-      description="Execute Web Services JAX-WS Related Tests">
+      description="Execute Web Services JAX-WS Related Tests"
+   	depends="init">
 
       <junit dir="${module.output}"
          printsummary="${junit.printsummary}"




More information about the jboss-cvs-commits mailing list