You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ru...@apache.org on 2007/05/29 12:52:29 UTC

svn commit: r542484 - /incubator/qpid/branches/M2/java/broker/pom.xml

Author: rupertlssmith
Date: Tue May 29 03:52:29 2007
New Revision: 542484

URL: http://svn.apache.org/viewvc?view=rev&rev=542484
Log:
Can now pass property to skip python tests, set in settings.xml

Modified:
    incubator/qpid/branches/M2/java/broker/pom.xml

Modified: incubator/qpid/branches/M2/java/broker/pom.xml
URL: http://svn.apache.org/viewvc/incubator/qpid/branches/M2/java/broker/pom.xml?view=diff&rev=542484&r1=542483&r2=542484
==============================================================================
--- incubator/qpid/branches/M2/java/broker/pom.xml (original)
+++ incubator/qpid/branches/M2/java/broker/pom.xml Tue May 29 03:52:29 2007
@@ -34,6 +34,9 @@
 
     <properties>
         <topDirectoryLocation>..</topDirectoryLocation>
+
+        <!-- Can override this in settings.xml -->
+        <skip.python.tests>false</skip.python.tests>
     </properties>
 
     <dependencies>
@@ -173,6 +176,11 @@
                                         <contains string="${user.dir}" substring="broker" />
                                     </condition>
 
+                                    <condition property="skip-python-tests" value="true">
+                                        <contains string="${skip.python.tests}" substring="true"/>>
+                                    </condition>
+
+                                    <!--<property name="skip-python-tests" value="${skip.python.tests}"/>-->
 
                                     <property name="command" 
                                               value="python run-tests -v -I java_failing.txt"/>