You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@qpid.apache.org by ta...@apache.org on 2015/01/14 20:44:23 UTC

qpid-jms git commit: add timeouts

Repository: qpid-jms
Updated Branches:
  refs/heads/master eb9a58b39 -> 644117cff


add timeouts

Project: http://git-wip-us.apache.org/repos/asf/qpid-jms/repo
Commit: http://git-wip-us.apache.org/repos/asf/qpid-jms/commit/644117cf
Tree: http://git-wip-us.apache.org/repos/asf/qpid-jms/tree/644117cf
Diff: http://git-wip-us.apache.org/repos/asf/qpid-jms/diff/644117cf

Branch: refs/heads/master
Commit: 644117cff4c4fac1ff98375aac0713f8e5ca3e3a
Parents: eb9a58b
Author: Timothy Bish <ta...@gmail.com>
Authored: Wed Jan 14 14:44:16 2015 -0500
Committer: Timothy Bish <ta...@gmail.com>
Committed: Wed Jan 14 14:44:16 2015 -0500

----------------------------------------------------------------------
 .../org/apache/qpid/jms/JmsConnectionInRandomBatchesTest.java  | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/qpid-jms/blob/644117cf/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/JmsConnectionInRandomBatchesTest.java
----------------------------------------------------------------------
diff --git a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/JmsConnectionInRandomBatchesTest.java b/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/JmsConnectionInRandomBatchesTest.java
index 78cf03d..84663b9 100644
--- a/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/JmsConnectionInRandomBatchesTest.java
+++ b/qpid-jms-interop-tests/qpid-jms-activemq-tests/src/test/java/org/apache/qpid/jms/JmsConnectionInRandomBatchesTest.java
@@ -54,17 +54,17 @@ public class JmsConnectionInRandomBatchesTest extends AmqpTestSupport  {
         super.tearDown();
     }
 
-    @Test
+    @Test(timeout = 60 * 1000)
     public void testSingleBatch() throws Exception {
         doCreateConnectionBatch(MAX_BATCH_SIZE);
     }
 
-    @Test
+    @Test(timeout = 60 * 1000)
     public void testCreateManyBatches() throws Exception {
         doCreateConnectionInBatches(MAX_BATCH_ITERATIONS, MAX_BATCH_SIZE);
     }
 
-    @Test
+    @Test(timeout = 60 * 1000)
     public void testCreateRandomSizedBatches() throws Exception {
         doCreateConnectionInBatches(MAX_BATCH_ITERATIONS, RANDOM_SIZE_MARKER);
     }


---------------------------------------------------------------------
To unsubscribe, e-mail: commits-unsubscribe@qpid.apache.org
For additional commands, e-mail: commits-help@qpid.apache.org