Bumping the wait time a bit to account for older system and slow disks.

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1442681 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Timothy A. Bish 2013-02-05 18:08:14 +00:00
parent 5b533c7c37
commit 4650f998db
1 changed files with 4 additions and 3 deletions

View File

@ -72,11 +72,12 @@ public class BrokerTestSupport extends CombinationTestSupport {
protected String queueName = "TEST";
protected int maxWait = 4000;
protected int maxWait = 10000;
protected SystemUsage memoryManager;
protected PolicyMap policyMap = new PolicyMap();
@Override
protected void setUp() throws Exception {
super.setUp();
broker = createBroker();
@ -97,6 +98,7 @@ public class BrokerTestSupport extends CombinationTestSupport {
return broker;
}
@Override
protected void tearDown() throws Exception {
broker.stop();
broker.waitUntilStopped();
@ -352,5 +354,4 @@ public class BrokerTestSupport extends CombinationTestSupport {
}
}
}
}