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

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Wed Feb 21 02:35:10 EST 2007


Author: ovidiu.feodorov at jboss.com
Date: 2007-02-21 02:35:10 -0500 (Wed, 21 Feb 2007)
New Revision: 2378

Modified:
   trunk/build-messaging.xml
Log:
while creating the release bundle, the test results can be easily skipped if they are not available

Modified: trunk/build-messaging.xml
===================================================================
--- trunk/build-messaging.xml	2007-02-21 07:16:31 UTC (rev 2377)
+++ trunk/build-messaging.xml	2007-02-21 07:35:10 UTC (rev 2378)
@@ -81,6 +81,12 @@
    <property environment="ENV"/>
 
    <!--
+        Other local properties.
+   -->
+
+   <property name="require.test.results" value="true"/>
+
+   <!--
         Project paths.
    -->
 
@@ -736,7 +742,7 @@
            basedir="${project.root}/tests/src" includes="org/jboss/test/**" excludes="**/CVS,*.iml"/>
    </target>
 
-   <target name="bundle-test-results" depends="release-structure">
+   <target name="bundle-test-results" depends="release-structure" if="require.test.results">
 
       <available file="${release.output}/test-results/jboss-messaging-functional-test-results-${module.version}.zip"
                  property="functional.test.results.present" value="true"/>




More information about the jboss-cvs-commits mailing list