ensure test failure does not block build

git-svn-id: https://svn.apache.org/repos/asf/activemq/trunk@1243485 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary Tully 2012-02-13 11:53:28 +00:00
parent 9a22fe586d
commit ace122aede
1 changed files with 6 additions and 0 deletions

View File

@ -155,6 +155,12 @@ public class SoWriteTimeoutTest extends JmsTestSupport {
return new String(content);
}
@Override
protected void setUp() throws Exception {
setAutoFail(true);
super.setUp();
}
public static Test suite() {
return suite(SoWriteTimeoutTest.class);
}