make: Add new CT suites and clarify check on CT_SUITES
This commit is contained in:
parent
aee0cd0079
commit
4530fb5d97
|
@ -265,7 +265,7 @@ PARALLEL_CT_SET_3_D = metadata_store_phase1 metrics mirrored_supervisor msg_stor
|
|||
|
||||
PARALLEL_CT_SET_4_A = clustering_events rabbit_local_random_exchange rabbit_message_interceptor rabbitmq_4_0_deprecations unit_pg_local unit_plugin_directories unit_plugin_versioning unit_policy_validators unit_priority_queue
|
||||
PARALLEL_CT_SET_4_B = per_user_connection_tracking per_vhost_connection_limit rabbit_fifo_dlx_integration rabbit_fifo_int
|
||||
PARALLEL_CT_SET_4_C = per_vhost_msg_store per_vhost_queue_limit priority_queue upgrade_preparation vhost
|
||||
PARALLEL_CT_SET_4_C = msg_size_metrics unit_msg_size_metrics per_vhost_msg_store per_vhost_queue_limit priority_queue upgrade_preparation vhost
|
||||
PARALLEL_CT_SET_4_D = per_user_connection_channel_tracking product_info publisher_confirms_parallel queue_type rabbitmq_queues_cli_integration rabbitmqctl_integration rabbitmqctl_shutdown routing
|
||||
|
||||
PARALLEL_CT_SET_1 = $(sort $(PARALLEL_CT_SET_1_A) $(PARALLEL_CT_SET_1_B) $(PARALLEL_CT_SET_1_C) $(PARALLEL_CT_SET_1_D))
|
||||
|
@ -277,7 +277,7 @@ SEQUENTIAL_CT_SUITES = clustering_management dead_lettering feature_flags metada
|
|||
PARALLEL_CT_SUITES = $(PARALLEL_CT_SET_1) $(PARALLEL_CT_SET_2) $(PARALLEL_CT_SET_3) $(PARALLEL_CT_SET_4)
|
||||
|
||||
ifneq ($(filter-out $(SEQUENTIAL_CT_SUITES) $(PARALLEL_CT_SUITES),$(CT_SUITES)),)
|
||||
$(error Some test suites in CT_SUITES but not configured for CI.)
|
||||
$(error Some test suites in CT_SUITES but not configured for CI: $(filter-out $(SEQUENTIAL_CT_SUITES) $(PARALLEL_CT_SUITES),$(CT_SUITES)))
|
||||
endif
|
||||
|
||||
define tpl_parallel_ct_test_spec
|
||||
|
|
|
@ -99,7 +99,7 @@ PARALLEL_CT_SET_1_D = mqtt_shared
|
|||
PARALLEL_CT_SUITES = $(PARALLEL_CT_SET_1_A) $(PARALLEL_CT_SET_1_B) $(PARALLEL_CT_SET_1_C) $(PARALLEL_CT_SET_1_D)
|
||||
|
||||
ifneq ($(filter-out $(PARALLEL_CT_SUITES),$(CT_SUITES)),)
|
||||
$(error Some test suites in CT_SUITES but not configured for CI.)
|
||||
$(error Some test suites in CT_SUITES but not configured for CI: $(filter-out $(PARALLEL_CT_SUITES),$(CT_SUITES)))
|
||||
endif
|
||||
|
||||
define tpl_parallel_ct_test_spec
|
||||
|
|
Loading…
Reference in New Issue