Skip to content

Commit dc941fe

Browse files
committed
Merge branch 'stable'
2 parents a4c74c5 + 41a512e commit dc941fe

34 files changed

+13080
-337
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,7 @@
22
.sw?
33
.*.sw?
44
*.beam
5+
*.coverdata
56
.erlang.mk/
67
cover/
78
debug/
@@ -12,6 +13,7 @@ ebin/
1213
etc/
1314
logs/
1415
plugins/
16+
test/ct.cover.spec
1517

1618
PACKAGES/
1719

Makefile

Lines changed: 5 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@ DEP_PLUGINS = rabbit_common/mk/rabbitmq-build.mk \
2626
rabbit_common/mk/rabbitmq-dist.mk \
2727
rabbit_common/mk/rabbitmq-tools.mk
2828

29+
CT_OPTS += -ct_hooks cth_surefire
30+
2931
# FIXME: Use erlang.mk patched for RabbitMQ, while waiting for PRs to be
3032
# reviewed and merged.
3133

@@ -65,6 +67,9 @@ DEPS += $(DISTRIBUTED_DEPS)
6567
endif
6668
endif
6769

70+
# FIXME: Remove rabbitmq_test as TEST_DEPS from here for now.
71+
TEST_DEPS := amqp_client meck $(filter-out rabbitmq_test,$(TEST_DEPS))
72+
6873
include erlang.mk
6974

7075
# --------------------------------------------------------------------
@@ -101,24 +106,6 @@ clean:: clean-extra-sources
101106
clean-extra-sources:
102107
$(gen_verbose) rm -f $(EXTRA_SOURCES)
103108

104-
# --------------------------------------------------------------------
105-
# Tests.
106-
# --------------------------------------------------------------------
107-
108-
TARGETS_IN_RABBITMQ_TEST = $(patsubst %,%-in-rabbitmq_test,\
109-
tests full unit lite conformance16 lazy-vq-tests)
110-
111-
.PHONY: $(TARGETS_IN_RABBITMQ_TEST)
112-
113-
tests:: tests-in-rabbitmq_test
114-
115-
$(TARGETS_IN_RABBITMQ_TEST): $(ERLANG_MK_RECURSIVE_TEST_DEPS_LIST) \
116-
test-build $(DEPS_DIR)/rabbitmq_test
117-
$(MAKE) -C $(DEPS_DIR)/rabbitmq_test \
118-
IS_DEP=1 \
119-
RABBITMQ_BROKER_DIR=$(RABBITMQ_BROKER_DIR) \
120-
$(patsubst %-in-rabbitmq_test,%,$@)
121-
122109
# --------------------------------------------------------------------
123110
# Documentation.
124111
# --------------------------------------------------------------------

build.config

Lines changed: 0 additions & 43 deletions
This file was deleted.

0 commit comments

Comments
 (0)