summaryrefslogtreecommitdiff
path: root/qpid/java
diff options
context:
space:
mode:
authorRajith Muditha Attapattu <rajith@apache.org>2010-02-06 01:04:07 +0000
committerRajith Muditha Attapattu <rajith@apache.org>2010-02-06 01:04:07 +0000
commit285699c799ac56252f4da7e7da9ac07ee82eb31d (patch)
tree0b9ba76840a1c5aadcd0faed514f3cd9abad1ad7 /qpid/java
parentda00c6a28b4df6e2618cff17f952012f7d76c10c (diff)
downloadqpid-python-285699c799ac56252f4da7e7da9ac07ee82eb31d.tar.gz
I am disabling the WsDmAdapterTest by commenting out the code that adds the test cases to the test suite.
This test is failing due to classpath issues related to Sun shipping a fairly old version of Apache Xalan jars. I also removed the entry from Excludes. I mistakenly added it there without realizing that this test doesn't extend from QpidTestCase git-svn-id: https://svn.apache.org/repos/asf/qpid/trunk@907146 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'qpid/java')
-rw-r--r--qpid/java/management/client/src/test/java/org/apache/qpid/management/wsdm/WsDmAdapterTest.java4
-rw-r--r--qpid/java/test-profiles/Excludes2
2 files changed, 2 insertions, 4 deletions
diff --git a/qpid/java/management/client/src/test/java/org/apache/qpid/management/wsdm/WsDmAdapterTest.java b/qpid/java/management/client/src/test/java/org/apache/qpid/management/wsdm/WsDmAdapterTest.java
index 07395b3be9..f12288c91d 100644
--- a/qpid/java/management/client/src/test/java/org/apache/qpid/management/wsdm/WsDmAdapterTest.java
+++ b/qpid/java/management/client/src/test/java/org/apache/qpid/management/wsdm/WsDmAdapterTest.java
@@ -126,12 +126,12 @@ public class WsDmAdapterTest
public static Test suite()
{
TestSuite suite = new TestSuite("Test suite for QMan WS-DM.");
- suite.addTestSuite(MetadataExchangeInterfaceTestCase.class);
+ /*suite.addTestSuite(MetadataExchangeInterfaceTestCase.class);
suite.addTestSuite(OperationInvocationInterfaceTestCase.class);
suite.addTestSuite(GetResourcePropertyDocumentTestCase.class);
suite.addTestSuite(SetResourcePropertiesTestCase.class);
suite.addTestSuite(GetMultipleResourcePropertiesTestCase.class);
- suite.addTestSuite(GetResourcePropertiesTestCase.class);
+ suite.addTestSuite(GetResourcePropertiesTestCase.class); */
return new WsDmAdapterTestSetup(suite);
}
diff --git a/qpid/java/test-profiles/Excludes b/qpid/java/test-profiles/Excludes
index b9626a4726..ccb907e597 100644
--- a/qpid/java/test-profiles/Excludes
+++ b/qpid/java/test-profiles/Excludes
@@ -29,5 +29,3 @@ org.apache.qpid.test.unit.ack.AcknowledgeAfterFailoverTest#testClientAck
org.apache.qpid.test.unit.ack.AcknowledgeAfterFailoverOnMessageTest#*
org.apache.qpid.test.unit.ack.AcknowledgeAfterFailoverTest#*
-// The WSDM adapter test is failing again. Sadly there is no maintaince in this area
-org.apache.qpid.management.wsdm.WsDmAdapterTest#*