Skip to content

Commit 0e81d5d

Browse files
author
Matthias Radestock
committed
merge bug20650 into v1_5
2 parents 6202a8d + 4e2582e commit 0e81d5d

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

test/src/com/rabbitmq/client/test/AllTest.java

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,6 @@ public static TestSuite suite() {
4343
suite.addTest(AMQConnectionTest.suite());
4444
suite.addTest(ValueOrExceptionTest.suite());
4545
suite.addTest(BrokenFramesTest.suite());
46-
suite.addTestSuite(Bug20004Test.class);
4746
return suite;
4847
}
4948
}

test/src/com/rabbitmq/client/test/Bug20004Test.java renamed to test/src/com/rabbitmq/client/test/functional/Bug20004Test.java

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@
2828
//
2929
// Contributor(s): ______________________________________.
3030
//
31-
package com.rabbitmq.client.test;
31+
package com.rabbitmq.client.test.functional;
3232

3333
import java.io.IOException;
3434

35-
import com.rabbitmq.client.test.functional.BrokerTestCase;
36-
3735
/**
3836
* Test for bug 20004 - deadlock through internal synchronization on
39-
* the channel object.
37+
* the channel object. This is more properly a unit test, but since it
38+
* requires a connection to a broker, it's grouped with the functional
39+
* tests.
4040
*/
4141
public class Bug20004Test extends BrokerTestCase {
4242
public Exception caughtException = null;

test/src/com/rabbitmq/client/test/functional/FunctionalTests.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -46,6 +46,7 @@ public static TestSuite suite() {
4646
suite.addTestSuite(RequeueOnChannelClose.class);
4747
suite.addTestSuite(DurableOnTransient.class);
4848
suite.addTestSuite(NoRequeueOnCancel.class);
49+
suite.addTestSuite(Bug20004Test.class);
4950
return suite;
5051
}
5152
}

0 commit comments

Comments
 (0)