You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ri...@apache.org on 2009/08/03 18:00:51 UTC

svn commit: r800439 - in /qpid/trunk/qpid/java: systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java test-profiles/010Excludes

Author: ritchiem
Date: Mon Aug  3 16:00:51 2009
New Revision: 800439

URL: http://svn.apache.org/viewvc?rev=800439&view=rev
Log:
QPID-2019 : Update Exclude mechanism so we can exclude the new logging tests from the CPP broker

Modified:
    qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
    qpid/trunk/qpid/java/test-profiles/010Excludes

Modified: qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java?rev=800439&r1=800438&r2=800439&view=diff
==============================================================================
--- qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java (original)
+++ qpid/trunk/qpid/java/systests/src/main/java/org/apache/qpid/test/utils/QpidTestCase.java Mon Aug  3 16:00:51 2009
@@ -251,7 +251,8 @@
 
     public void run(TestResult testResult)
     {
-        if (_exclusionList != null && (_exclusionList.contains(getClass().getName() + "#*") ||
+        if (_exclusionList != null && (_exclusionList.contains(getClass().getPackage().getName() + ".*") ||
+                                       _exclusionList.contains(getClass().getName() + "#*") ||
                                        _exclusionList.contains(getClass().getName() + "#" + getName())))
         {
             _logger.info("Test: " + getName() + " is excluded");

Modified: qpid/trunk/qpid/java/test-profiles/010Excludes
URL: http://svn.apache.org/viewvc/qpid/trunk/qpid/java/test-profiles/010Excludes?rev=800439&r1=800438&r2=800439&view=diff
==============================================================================
--- qpid/trunk/qpid/java/test-profiles/010Excludes (original)
+++ qpid/trunk/qpid/java/test-profiles/010Excludes Mon Aug  3 16:00:51 2009
@@ -77,3 +77,5 @@
 // QPID-1225 : Temporary remove this test until the problem has been addressed
 org.apache.qpid.server.security.acl.SimpleACLTest#testClientPublishInvalidQueueSuccess
 
+// CPP Broker does not follow the same Logging convention as the Java broker
+org.apache.qpid.server.logging.*



---------------------------------------------------------------------
Apache Qpid - AMQP Messaging Implementation
Project:      http://qpid.apache.org
Use/Interact: mailto:commits-subscribe@qpid.apache.org