Skip to content

Commit f63fa03

Browse files
committed
feature flags: skip tests for recently fixed bugs
These tests fail in a mixed-version cluster with 3.13
1 parent 95c5ce3 commit f63fa03

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

deps/rabbit/test/feature_flags_SUITE.erl

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1277,6 +1277,13 @@ activating_plugin_with_new_ff_enabled(Config) ->
12771277
ok.
12781278

12791279
enable_plugin_feature_flag_after_deactivating_plugin(Config) ->
1280+
case rabbit_ct_broker_helpers:is_feature_flag_enabled(Config, 'rabbitmq_4.0.0') of
1281+
true ->
1282+
ok;
1283+
false ->
1284+
throw({skip, "this test triggers a bug present in 3.13"})
1285+
end,
1286+
12801287
FFSubsysOk = is_feature_flag_subsystem_available(Config),
12811288

12821289
log_feature_flags_of_all_nodes(Config),
@@ -1307,6 +1314,13 @@ enable_plugin_feature_flag_after_deactivating_plugin(Config) ->
13071314
ok.
13081315

13091316
restart_node_with_unknown_enabled_feature_flag(Config) ->
1317+
case rabbit_ct_broker_helpers:is_feature_flag_enabled(Config, 'rabbitmq_4.0.0') of
1318+
true ->
1319+
ok;
1320+
false ->
1321+
throw({skip, "this test triggers a bug present in 3.13"})
1322+
end,
1323+
13101324
FFSubsysOk = is_feature_flag_subsystem_available(Config),
13111325

13121326
log_feature_flags_of_all_nodes(Config),

0 commit comments

Comments
 (0)