turn the failing tests back on.

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1445704 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2013-02-13 16:11:07 +00:00
parent 7bc7178899
commit 48effa8d2d
3 changed files with 5 additions and 10 deletions

View File

@ -60,7 +60,7 @@ public class AMQ2584Test extends org.apache.activemq.TestSupport {
public void initCombosForTestSize() throws Exception {
this.addCombinationValues("defaultPersistenceAdapter",
new Object[]{
//PersistenceAdapterChoice.LevelDB, TODO readd and investiaget failures.
PersistenceAdapterChoice.LevelDB,
PersistenceAdapterChoice.KahaDB
});
}

View File

@ -16,12 +16,13 @@
*/
package org.apache.activemq.leveldb;
import java.io.File;
import junit.framework.Test;
import org.apache.activemq.broker.BrokerService;
import org.apache.activemq.broker.XARecoveryBrokerTest;
import java.io.File;
/**
* @author <a href="http://hiramchirino.com">Hiram Chirino</a>
*/
@ -43,9 +44,4 @@ public class LevelDBXARecoveryBrokerTest extends XARecoveryBrokerTest {
broker.setPersistenceAdapter(store);
}
@Override
public void testTopicPersistentPreparedAcksAvailableAfterRestartAndRollback() {
// https://issues.apache.org/jira/browse/AMQ-4296
}
}

View File

@ -137,9 +137,8 @@ public class DurableSubscriptionOfflineTest extends org.apache.activemq.TestSupp
}
public void initCombosForTestConsumeOnlyMatchedMessages() throws Exception {
// TODO - readd PersistenceAdapterChoice.LevelDB and investigate failure cause.
this.addCombinationValues("defaultPersistenceAdapter",
new Object[]{ PersistenceAdapterChoice.KahaDB, PersistenceAdapterChoice.JDBC});
new Object[]{ PersistenceAdapterChoice.KahaDB, PersistenceAdapterChoice.LevelDB, PersistenceAdapterChoice.JDBC});
this.addCombinationValues("usePrioritySupport",
new Object[]{ Boolean.TRUE, Boolean.FALSE});
}