[jboss-cvs] JBoss Messaging SVN: r3503 - trunk/tests.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Fri Dec 14 09:31:53 EST 2007


Author: jmesnil
Date: 2007-12-14 09:31:53 -0500 (Fri, 14 Dec 2007)
New Revision: 3503

Modified:
   trunk/tests/build.xml
Log:
* added a ide-remoting-tests which can be used to run all tests related to remoting directly from an IDE

Modified: trunk/tests/build.xml
===================================================================
--- trunk/tests/build.xml	2007-12-14 14:25:44 UTC (rev 3502)
+++ trunk/tests/build.xml	2007-12-14 14:31:53 UTC (rev 3503)
@@ -1044,6 +1044,24 @@
       </junit>
    </target>
 
+   <target name="ide-remoting-tests" depends="tests-jar, prepare-testdirs, clear-test-logs"
+	       description="Runs all tests related to remoting from an IDE">
+      <junit printsummary="true"
+             fork="on"
+             forkMode="once"
+             includeantruntime="true"
+             haltonerror="true"
+             haltonfailure="true"
+             showoutput="false">
+         <classpath refid="test.execution.classpath"/>
+         <batchtest>
+            <fileset dir="${build.tests.classes}">
+		       <include name="**/messaging/core/remoting/**/${test-mask}.class"/>
+            </fileset>
+         </batchtest>
+      </junit>
+   </target>
+
    <target name="drop-tables" depends="tests-jar, prepare-testdirs, clear-test-logs"
            description="Drops all tables">
 




More information about the jboss-cvs-commits mailing list