Skip to content

Commit 4394f0c

Browse files
mirrored_supervisor_SUITE: don't search logs for exceptions #13008
(cherry picked from commit 2aed297)
1 parent 58bcffe commit 4394f0c

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

deps/rabbit/test/mirrored_supervisor_SUITE.erl

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,8 @@ end_per_suite(Config) ->
5151
init_per_group(Group, Config) ->
5252
Config1 = rabbit_ct_helpers:set_config(Config, [
5353
{rmq_nodename_suffix, Group},
54-
{rmq_nodes_count, 1}
54+
{rmq_nodes_count, 1},
55+
{find_crashes, false}
5556
]),
5657
rabbit_ct_helpers:run_steps(Config1,
5758
rabbit_ct_broker_helpers:setup_steps() ++
@@ -63,7 +64,10 @@ end_per_group(_Group, Config) ->
6364
rabbit_ct_broker_helpers:teardown_steps()).
6465

6566
init_per_testcase(Testcase, Config) ->
66-
Config1 = rabbit_ct_helpers:set_config(Config, [{sup_prefix, Testcase}]),
67+
Config1 = rabbit_ct_helpers:set_config(Config, [
68+
{sup_prefix, Testcase},
69+
{find_crashes, false}
70+
]),
6771
rabbit_ct_helpers:testcase_started(Config1, Testcase).
6872

6973
end_per_testcase(Testcase, Config) ->

0 commit comments

Comments
 (0)