[jboss-cvs] JBoss Messaging SVN: r4651 - trunk.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jul 7 12:25:35 EDT 2008


Author: clebert.suconic at jboss.com
Date: 2008-07-07 12:25:33 -0400 (Mon, 07 Jul 2008)
New Revision: 4651

Modified:
   trunk/build-messaging.xml
   trunk/build.xml
Log:
Making unit-tests the default target

Modified: trunk/build-messaging.xml
===================================================================
--- trunk/build-messaging.xml	2008-07-07 16:21:48 UTC (rev 4650)
+++ trunk/build-messaging.xml	2008-07-07 16:25:33 UTC (rev 4651)
@@ -687,7 +687,6 @@
             </fileset>
          </batchtest>
       </junit>
-      <antcall target="compile-reports"/>
    </target>
 
    <target name="jms-tests" depends="jar, compile-jms-tests">
@@ -733,7 +732,6 @@
             </fileset>
          </batchtest>
       </junit>
-      <antcall target="compile-reports"/>
    </target>
 
    <target name="stress-tests" depends="jar, compile-unit-tests">
@@ -765,7 +763,6 @@
             </fileset>
          </batchtest>
       </junit>
-      <antcall target="compile-reports"/>
    </target>
 
    <target name="all-tests" depends="unit-tests, integration-tests, timing-tests, performance-tests, concurrent-tests, jms-tests"/>

Modified: trunk/build.xml
===================================================================
--- trunk/build.xml	2008-07-07 16:21:48 UTC (rev 4650)
+++ trunk/build.xml	2008-07-07 16:25:33 UTC (rev 4651)
@@ -35,7 +35,7 @@
 <!-- =========================================================================================== -->
 
 
-<project default="jar" name="JBoss Messaging">
+<project default="unit-tests" name="JBoss Messaging">
 
    <!--
         Setting "external.project" to true makes jbossbuild use the current directory, and not its
@@ -115,35 +115,43 @@
 
    <target name="unit-tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="unit-tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
 
    <target name="timing-tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="timing-tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
 
    <target name="integration-tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="integration-tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
 
     <target name="concurrent-tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="concurrent-tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
 
     <target name="performance-tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="performance-tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
    
 
    <target name="jms-tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="jms-tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
 
    <target name="all-tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="all-tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
 
    <target name="tests" depends="createthirdparty">
       <ant antfile="build-messaging.xml" target="tests"/>
+      <ant antfile="build-messaging.xml" target="compile-reports"/>
    </target>
 
    <target name="compile-reports" depends="createthirdparty">




More information about the jboss-cvs-commits mailing list