Skip to content

Commit

Permalink
mirrored_supervisor_SUITE: don't search logs for exceptions #13008
Browse files Browse the repository at this point in the history
(cherry picked from commit 2aed297)
  • Loading branch information
michaelklishin committed Jan 2, 2025
1 parent 58bcffe commit 4394f0c
Showing 1 changed file with 6 additions and 2 deletions.
8 changes: 6 additions & 2 deletions deps/rabbit/test/mirrored_supervisor_SUITE.erl
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,8 @@ end_per_suite(Config) ->
init_per_group(Group, Config) ->
Config1 = rabbit_ct_helpers:set_config(Config, [
{rmq_nodename_suffix, Group},
{rmq_nodes_count, 1}
{rmq_nodes_count, 1},
{find_crashes, false}
]),
rabbit_ct_helpers:run_steps(Config1,
rabbit_ct_broker_helpers:setup_steps() ++
Expand All @@ -63,7 +64,10 @@ end_per_group(_Group, Config) ->
rabbit_ct_broker_helpers:teardown_steps()).

init_per_testcase(Testcase, Config) ->
Config1 = rabbit_ct_helpers:set_config(Config, [{sup_prefix, Testcase}]),
Config1 = rabbit_ct_helpers:set_config(Config, [
{sup_prefix, Testcase},
{find_crashes, false}
]),
rabbit_ct_helpers:testcase_started(Config1, Testcase).

end_per_testcase(Testcase, Config) ->
Expand Down

0 comments on commit 4394f0c

Please sign in to comment.