This closes #2936
This commit is contained in:
commit
269ad82c03
|
@ -264,7 +264,9 @@ public abstract class ActiveMQTestBase extends Assert {
|
||||||
public ActiveMQTestBase() {
|
public ActiveMQTestBase() {
|
||||||
File parent = new File(TARGET_TMP);
|
File parent = new File(TARGET_TMP);
|
||||||
parent.mkdirs();
|
parent.mkdirs();
|
||||||
temporaryFolder = new TemporaryFolder(parent);
|
File subParent = new File(parent, this.getClass().getSimpleName());
|
||||||
|
subParent.mkdirs();
|
||||||
|
temporaryFolder = new TemporaryFolder(subParent);
|
||||||
}
|
}
|
||||||
|
|
||||||
protected <T> T serialClone(Object object) throws Exception {
|
protected <T> T serialClone(Object object) throws Exception {
|
||||||
|
|
|
@ -139,7 +139,7 @@ public class NoProcessFilesBehind extends TestWatcher {
|
||||||
|
|
||||||
if (!Wait.waitFor(() -> getOpenFD() < maxFiles, 5000, 0)) {
|
if (!Wait.waitFor(() -> getOpenFD() < maxFiles, 5000, 0)) {
|
||||||
String fileList = getOpenList();
|
String fileList = getOpenList();
|
||||||
Assert.fail("Too many files open (" + maxFiles + "). A possible list: " + fileList);
|
Assert.fail("Too many files open (" + getOpenFD() + ">" + maxFiles + "). A possible list: " + fileList);
|
||||||
}
|
}
|
||||||
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue