summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorJean-Sébastien Pédron <jean-sebastien@rabbitmq.com>2017-03-09 09:55:15 +0100
committerMichael Klishin <michael@clojurewerkz.org>2017-03-22 23:38:02 +0300
commit98a118e54f1c02512e99e06716a97af5fcef4e78 (patch)
tree7f183d30198f7c2318c7fd5e901eac94a9b88180 /Makefile
parent29178a63e027723ac2f11cfafac188ba52e19c4f (diff)
downloadrabbitmq-server-git-98a118e54f1c02512e99e06716a97af5fcef4e78.tar.gz
test: A few minor style fixes
References #1136 [#136613953]
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile13
1 files changed, 11 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 2a156b8dcb..c824002b64 100644
--- a/Makefile
+++ b/Makefile
@@ -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)