summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr>2016-06-02 11:45:31 +0200
committerJean-Sébastien Pédron <jean-sebastien.pedron@dumbbell.fr>2016-06-02 11:45:31 +0200
commit249b7fb84ce52273bfa58ceb9068990151b0dd44 (patch)
tree6d0d841db96f1f056aa76da283a5ae37049f1246 /test
parent0e5c975720bcb70c2de50f88d1d87a4099556855 (diff)
downloadrabbitmq-server-git-249b7fb84ce52273bfa58ceb9068990151b0dd44.tar.gz
unit_inbroker_SUITE: Give one hour for the backing queue tests
In our CI, some tests are hitting the default commont_test timetrap of 30 minutes.
Diffstat (limited to 'test')
-rw-r--r--test/unit_inbroker_SUITE.erl8
1 files changed, 8 insertions, 0 deletions
diff --git a/test/unit_inbroker_SUITE.erl b/test/unit_inbroker_SUITE.erl
index dfde1fba22..e20f63ba8b 100644
--- a/test/unit_inbroker_SUITE.erl
+++ b/test/unit_inbroker_SUITE.erl
@@ -141,6 +141,14 @@ groups() ->
]}
].
+group(backing_queue_tests) ->
+ [
+ %% Several tests based on lazy queues may take more than 30 minutes.
+ {timetrap, {hours, 1}}
+ ];
+group(_) ->
+ [].
+
%% -------------------------------------------------------------------
%% Testsuite setup/teardown.
%% -------------------------------------------------------------------