summaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorMichael Klishin <michael@clojurewerkz.org>2020-04-07 14:37:52 +0300
committerMichael Klishin <michael@clojurewerkz.org>2020-04-07 14:38:04 +0300
commit2092730359a59742fd6b76ff086665e507bdeed6 (patch)
tree61413b37eeca9acd1dfc59c7a5fc3bd6820510e2 /test
parent3749302b20ed440d99d0b71916efba99e02f35be (diff)
downloadrabbitmq-server-git-2092730359a59742fd6b76ff086665e507bdeed6.tar.gz
Remove a few integration tests that rely on sigkill
Such cases are best tested using other tools. These cases are highly flaky and prevent pipeline progress. We believe it's the tests that are timing-sensitive. These may be replaced with e.g. additional Jepsen tests as needed in the future.
Diffstat (limited to 'test')
-rw-r--r--test/simple_ha_SUITE.erl5
1 files changed, 0 insertions, 5 deletions
diff --git a/test/simple_ha_SUITE.erl b/test/simple_ha_SUITE.erl
index 03a0de1195..567f43fe67 100644
--- a/test/simple_ha_SUITE.erl
+++ b/test/simple_ha_SUITE.erl
@@ -33,7 +33,6 @@ all() ->
groups() ->
RejectTests = [
rejects_survive_stop,
- rejects_survive_sigkill,
rejects_survive_policy
],
[
@@ -45,12 +44,10 @@ groups() ->
]},
{cluster_size_3, [], [
consume_survives_stop,
- consume_survives_sigkill,
consume_survives_policy,
auto_resume,
auto_resume_no_ccn_client,
confirms_survive_stop,
- confirms_survive_sigkill,
confirms_survive_policy,
{overflow_reject_publish, [], RejectTests},
{overflow_reject_publish_dlx, [], RejectTests}
@@ -207,11 +204,9 @@ auto_resume_no_ccn_client(Cf) -> consume_survives(Cf, fun sigkill/2, false,
false).
confirms_survive_stop(Cf) -> confirms_survive(Cf, fun stop/2).
-confirms_survive_sigkill(Cf) -> confirms_survive(Cf, fun sigkill/2).
confirms_survive_policy(Cf) -> confirms_survive(Cf, fun policy/2).
rejects_survive_stop(Cf) -> rejects_survive(Cf, fun stop/2).
-rejects_survive_sigkill(Cf) -> rejects_survive(Cf, fun sigkill/2).
rejects_survive_policy(Cf) -> rejects_survive(Cf, fun policy/2).
%%----------------------------------------------------------------------------