diff options
| author | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2017-03-09 09:55:15 +0100 |
|---|---|---|
| committer | Jean-Sébastien Pédron <jean-sebastien@rabbitmq.com> | 2017-03-09 12:48:56 +0100 |
| commit | ab29c481675be09cd0ac83b515dba91d29b5a757 (patch) | |
| tree | 6219f2913ee6cf0f49d138bee547e1add78ff1e6 | |
| parent | 8aaf538e92384b1ab7ca10944a3b834968edc6fc (diff) | |
| download | rabbitmq-server-git-ab29c481675be09cd0ac83b515dba91d29b5a757.tar.gz | |
test: A few minor style fixes
References #1136
[#136613953]
| -rw-r--r-- | Makefile | 13 | ||||
| -rw-r--r-- | test/backing_queue_SUITE.erl | 2 | ||||
| -rw-r--r-- | test/cluster_SUITE.erl | 1 | ||||
| -rw-r--r-- | test/disconnect_detected_during_alarm_SUITE.erl | 1 | ||||
| -rw-r--r-- | test/list_consumers_sanity_check_SUITE.erl | 2 |
5 files changed, 15 insertions, 4 deletions
@@ -145,8 +145,17 @@ ERLANG_MK_COMMIT = rabbitmq-tmp include rabbitmq-components.mk include erlang.mk -SLOW_CT_SUITES := $(sort cluster_rename clustering_management dynamic_ha eager_sync health_check partitions priority_queue simple_ha queue_master_location backing_queue) -FAST_CT_SUITES := $(filter-out $(SLOW_CT_SUITES),$(CT_SUITES)) +SLOW_CT_SUITES := backing_queue \ + cluster_rename \ + clustering_management \ + dynamic_ha \ + eager_sync \ + health_check \ + partitions \ + priority_queue \ + queue_master_location \ + simple_ha +FAST_CT_SUITES := $(filter-out $(sort $(SLOW_CT_SUITES)),$(CT_SUITES)) ct-fast: CT_SUITES = $(FAST_CT_SUITES) ct-slow: CT_SUITES = $(SLOW_CT_SUITES) diff --git a/test/backing_queue_SUITE.erl b/test/backing_queue_SUITE.erl index fa3e5cebb7..ccef4ec7c7 100644 --- a/test/backing_queue_SUITE.erl +++ b/test/backing_queue_SUITE.erl @@ -50,7 +50,7 @@ bq_queue_index_props, {variable_queue_default, [parallel], ?VARIABLE_QUEUE_TESTCASES}, {variable_queue_lazy, [parallel], ?VARIABLE_QUEUE_TESTCASES ++ - [variable_queue_mode_change]}, + [variable_queue_mode_change]}, bq_variable_queue_delete_msg_store_files_callback, bq_queue_recover ]). diff --git a/test/cluster_SUITE.erl b/test/cluster_SUITE.erl index 58dbf14575..1ba0bcf776 100644 --- a/test/cluster_SUITE.erl +++ b/test/cluster_SUITE.erl @@ -359,4 +359,3 @@ queue_name(Config, Name) -> queue_name(Name) -> rabbit_misc:r(<<"/">>, queue, Name). - diff --git a/test/disconnect_detected_during_alarm_SUITE.erl b/test/disconnect_detected_during_alarm_SUITE.erl index f8bae8b5ff..42e221fb0f 100644 --- a/test/disconnect_detected_during_alarm_SUITE.erl +++ b/test/disconnect_detected_during_alarm_SUITE.erl @@ -75,6 +75,7 @@ end_per_testcase(Testcase, Config) -> %% --------------------------------------------------------------------------- %% Testcase %% --------------------------------------------------------------------------- + disconnect_detected_during_alarm(Config) -> A = rabbit_ct_broker_helpers:get_node_config(Config, 0, nodename), diff --git a/test/list_consumers_sanity_check_SUITE.erl b/test/list_consumers_sanity_check_SUITE.erl index 5927c154d0..8f2fb8e57f 100644 --- a/test/list_consumers_sanity_check_SUITE.erl +++ b/test/list_consumers_sanity_check_SUITE.erl @@ -39,6 +39,7 @@ group(_) -> %% ------------------------------------------------------------------- %% Testsuite setup/teardown. %% ------------------------------------------------------------------- + init_per_suite(Config) -> rabbit_ct_helpers:log_environment(), rabbit_ct_helpers:run_setup_steps(Config). @@ -69,6 +70,7 @@ end_per_testcase(Testcase, Config) -> %% ------------------------------------------------------------------- %% Testcase %% ------------------------------------------------------------------- + list_consumers_sanity_check(Config) -> A = rabbit_ct_broker_helpers:get_node_config(Config, 0, nodename), Chan = rabbit_ct_client_helpers:open_channel(Config, A), |
